You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I could not find anything about mapping calsses that contains sub classes.
[Table("TableA")]
public class ClassA{
[COLUMN("B_ID")]
public BId {get; set;}
[COLUMN("b")]
public ClassB b{get; set;}
}
[Table("TableB")]
public class ClassB{
[COLUMN("ID")]
public Int32 Id{get; set;}
}
How to get this e.g. with a join or how do I load class A with nested B objects, that could have relations like one to one or one to many ?
I could not find anything about mapping calsses that contains sub classes.
How to get this e.g. with a join or how do I load class A with nested B objects, that could have relations like one to one or one to many ?