Ejemplo n.º 1
0
 public PartitionSopClassCollection FetchAll()
 {
     var coll = new PartitionSopClassCollection();
     var qry = new Query(PartitionSopClass.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Ejemplo n.º 2
0
 public PartitionSopClassCollection FetchByQuery(Query qry)
 {
     var coll = new PartitionSopClassCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }