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