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