Example #1
0
 public SysNavigationCollection FetchAll()
 {
     SysNavigationCollection coll = new SysNavigationCollection();
     Query qry = new Query(SysNavigation.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Example #2
0
 public SysNavigationCollection FetchByQuery(Query qry)
 {
     SysNavigationCollection coll = new SysNavigationCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }