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