Exemplo n.º 1
0
        public TblFunctionCollection FetchByQuery(Query qry)
        {
            var coll = new TblFunctionCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public TblFunctionCollection FetchAll()
        {
            var coll = new TblFunctionCollection();
            var qry  = new Query(TblFunction.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 3
0
        public TblFunctionCollection FetchByID(object PkIid)
        {
            TblFunctionCollection coll = new TblFunctionCollection().Where("PK_iID", PkIid).Load();

            return(coll);
        }