Click here to Skip to main content
15,892,537 members
Articles / Desktop Programming / WPF

N Tier development with Linq and WPF

Rate me:
Please Sign up or sign in to vote.
2.55/5 (8 votes)
11 Nov 2008CPOL6 min read 33.5K   484   32  
N Tier development with Linq and WPF
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;

namespace UTILS.TestDB
{
    public class USR_USERInfo
    {
        public class TableStructure
        {
            public int USER_ID;
            public String USER_NAME;
            public String EMAIL;
            public DateTime ENTRY_DATE;
            public Boolean ACTIVE;

        }
        public class JoinedToUSR_USER_GROUP // Via USR_USER_TO_USER_GROUP
        {
            public int USER_ID;
            public String USER_NAME;
            public String EMAIL;
            public int USER_TO_USER_GROUP_ID;
            public int USER_GROUP_ID;
            public String USER_GROUP;
        }

    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Switzerland Switzerland
I am a Software Engineer currently working in a Re Insurance company.

Comments and Discussions