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