예제 #1
0
        public DDOperationCollection FetchByQuery(Query qry)
        {
            DDOperationCollection coll = new DDOperationCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #2
0
        public DDOperationCollection FetchAll()
        {
            DDOperationCollection coll = new DDOperationCollection();
            Query qry = new Query(DDOperation.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
예제 #3
0
        public DDOperationCollection FetchByID(object OperationID)
        {
            DDOperationCollection coll = new DDOperationCollection().Where("OperationID", OperationID).Load();

            return(coll);
        }