public UserLinkGroupCollection FetchAll() { UserLinkGroupCollection coll = new UserLinkGroupCollection(); Query qry = new Query(UserLinkGroup.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return coll; }
public UserLinkGroupCollection FetchByQuery(Query qry) { UserLinkGroupCollection coll = new UserLinkGroupCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return coll; }
public UserLinkGroupCollection FetchByID(object UserLinkGroupID) { UserLinkGroupCollection coll = new UserLinkGroupCollection().Where("UserLinkGroupID", UserLinkGroupID).Load(); return coll; }