示例#1
0
 public static int CountM2M <TChild>(IManyToMany <TChild> parent)
 {
     return(parent.Children.Count);
 }
示例#2
0
 public static ICollection <TChild> CollectionM2M <TChild>(IManyToMany <TChild> parent)
 {
     return(parent.Children);
 }