コード例 #1
0
ファイル: AssociateClasses.cs プロジェクト: leohsu91/DbEntry
 public PersonSql()
 {
     PC = new HasOne <PersonalComputerSql>(this, null, "Person_Id");
 }
コード例 #2
0
 public ctUser()
 {
     info = new HasOne <ctInfo>(this, null, "user_id");
 }
コード例 #3
0
 public PeopleImp2()
 {
     pc = new HasOne <PCsImp2>(this, "Id DESC", "Person_Id");
 }
コード例 #4
0
 public ImpPeople()
 {
     _pc = new HasOne <ImpPCs>(this, "Id", "Person_Id");
     m_InitUpdateColumns();
 }
コード例 #5
0
 public PeopleImp1()
 {
     pc = new HasOne <PCsImp1>(this, "Id", "Person_Id");
 }