public PartitionTransferSyntaxCollection FetchAll()
 {
     var coll = new PartitionTransferSyntaxCollection();
     var qry = new Query(PartitionTransferSyntax.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public PartitionTransferSyntaxCollection FetchByQuery(Query qry)
 {
     var coll = new PartitionTransferSyntaxCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public PartitionTransferSyntaxCollection FetchByID(object Guid)
 {
     PartitionTransferSyntaxCollection coll = new PartitionTransferSyntaxCollection().Where("GUID", Guid).Load();
     return coll;
 }