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

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

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

            return(coll);
        }