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