Exemplo n.º 1
0
 public ManyMore1Sqlite()
 {
     m = new HasAndBelongsToMany <ManyMoreSqlite>(this, "Id", "ManyMore1_Id");
 }
Exemplo n.º 2
0
 public DbEntryRole()
 {
     Users = new HasAndBelongsToMany <DbEntryMembershipUser> (this, "Id", "User_Id");
 }
Exemplo n.º 3
0
 public ManyMore()
 {
     m1 = new HasAndBelongsToMany <ManyMore1>(this, "Id", "ManyMore_Id");
     m2 = new HasAndBelongsToMany <ManyMore2>(this, "Id", "ManyMore_Id");
 }
Exemplo n.º 4
0
 public ManyMore2()
 {
     m = new HasAndBelongsToMany <ManyMore>(this, "Id", "ManyMore2_Id");
 }
Exemplo n.º 5
0
 public TableC()
 {
     TD = new HasAndBelongsToMany <TableD> (this, "Id", "TableC_Id");
 }
Exemplo n.º 6
0
 public TableD()
 {
     TC = new HasAndBelongsToMany <TableC> (this, "Id", "TableD_Id");
 }
Exemplo n.º 7
0
 public crxBook()
 {
     Categories = new HasAndBelongsToMany <crxCategory>(this, "Id", "Books_Id");
 }
Exemplo n.º 8
0
 public crxCategory()
 {
     Books = new HasAndBelongsToMany <crxBook>(this, "Id", "Categories_Id");
 }
Exemplo n.º 9
0
 public crxCategory1()
 {
     Books = new HasAndBelongsToMany <crxBook1>(this, "Id", "crxCategory1_Id");
 }
Exemplo n.º 10
0
 public crxCategory1Sqlite()
 {
     Books = new HasAndBelongsToMany <crxBook1Sqlite>(this, "Id", "crxBook1Sqlite_Id");
 }
Exemplo n.º 11
0
 public cmmArticle()
 {
     rads = new HasAndBelongsToMany <cmmReader>(this, "Id", "cmmArticle_id");
 }
Exemplo n.º 12
0
 public cmmReader()
 {
     arts = new HasAndBelongsToMany <cmmArticle>(this, "Id", "cmmReader_id");
 }
Exemplo n.º 13
0
 public OtherInfo()
 {
     Info = new HasAndBelongsToMany <TreeInfo> (this, "Id", "OtherInfo_Id");
 }
Exemplo n.º 14
0
 public TreeInfo()
 {
     Other = new HasAndBelongsToMany <OtherInfo> (this, "Id", "TreeInfo_Id");
 }
Exemplo n.º 15
0
 public DbEntryMembershipUser()
 {
     Roles = new HasAndBelongsToMany <DbEntryRole> (this, "Id", "DbEntryMembershipUser_Id");
 }