public DbversionCollection FetchAll() { DbversionCollection coll = new DbversionCollection(); Query qry = new Query(Dbversion.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return coll; }
public DbversionCollection FetchByQuery(Query qry) { DbversionCollection coll = new DbversionCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return coll; }
public DbversionCollection FetchByID(object Id) { DbversionCollection coll = new DbversionCollection().Where("id", Id).Load(); return coll; }