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