Hi All, Consider the following table structure
TableA - TableAB - TableB - TableC - TableCB [where as TableAB and
TableBC are tables introduced resolve many to many relationships].
my question is if i define an object structure like
class A
{
//Propertise
IList<C> C
}
is there a way of directly mapping class A to C directly [bag / set
statements]; as Table A has a collection of C records in database
level.
