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