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