Ejemplo n.º 1
0
 public AspnetPathCollection FetchAll()
 {
     AspnetPathCollection coll = new AspnetPathCollection();
     Query qry = new Query(AspnetPath.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Ejemplo n.º 2
0
 public AspnetPathCollection FetchByQuery(Query qry)
 {
     AspnetPathCollection coll = new AspnetPathCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Ejemplo n.º 3
0
 public AspnetPathCollection FetchByID(object PathId)
 {
     AspnetPathCollection coll = new AspnetPathCollection().Where("PathId", PathId).Load();
     return coll;
 }