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

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

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

            return(coll);
        }