Beispiel #1
0
        public PhpssLogCollection FetchByQuery(Query qry)
        {
            PhpssLogCollection coll = new PhpssLogCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #2
0
        public PhpssLogCollection FetchAll()
        {
            PhpssLogCollection coll = new PhpssLogCollection();
            Query qry = new Query(PhpssLog.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #3
0
        public PhpssLogCollection FetchByID(object Id)
        {
            PhpssLogCollection coll = new PhpssLogCollection().Where("id", Id).Load();

            return(coll);
        }