コード例 #1
0
 public AccountUserMapCollection FetchAll()
 {
     AccountUserMapCollection coll = new AccountUserMapCollection();
     Query qry = new Query(AccountUserMap.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #2
0
 public AccountUserMapCollection FetchByQuery(Query qry)
 {
     AccountUserMapCollection coll = new AccountUserMapCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #3
0
 public AccountUserMapCollection FetchByID(object AccountUserMapId)
 {
     AccountUserMapCollection coll = new AccountUserMapCollection().Where("AccountUserMapId", AccountUserMapId).Load();
     return coll;
 }