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