コード例 #1
0
 public ServerPartitionCollection FetchAll()
 {
     var coll = new ServerPartitionCollection();
     var qry = new Query(ServerPartition.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #2
0
 public ServerPartitionCollection FetchByQuery(Query qry)
 {
     var coll = new ServerPartitionCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }