in my db I have two tables that are related. Lets call them Job and JobType Job has a foreign key jobTypeID that references JobType.
I would like to create a custom class in the dbml with properties from both of the DB tables...essentially all of the Job properties and the JobTypeName property from JobType
This is a simplified example but id like to know if this is even possible before I continue.
Ultimately I need a linqtosql class with the appropriate properties to pass to a parser which handles paging, sorting, etc for a client side data grid...
If it helps to point me in a better direction, the parser takes an IQueryable with a generic type...the type being the linqtosql class that holds the data that will be displayed in the table.