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; }