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