public PathRouteCollection FetchByQuery(Query qry) { PathRouteCollection coll = new PathRouteCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public PathRouteCollection FetchAll() { PathRouteCollection coll = new PathRouteCollection(); Query qry = new Query(PathRoute.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public PathRouteCollection FetchByID(object PathRouteKey) { PathRouteCollection coll = new PathRouteCollection().Where("path_route_key", PathRouteKey).Load(); return(coll); }