コード例 #1
0
        public LObjectTypeCollection FetchByQuery(Query qry)
        {
            var coll = new LObjectTypeCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
        public LObjectTypeCollection FetchAll()
        {
            var coll = new LObjectTypeCollection();
            var qry  = new Query(LObjectType.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #3
0
        public LObjectTypeCollection FetchByID(object Id)
        {
            LObjectTypeCollection coll = new LObjectTypeCollection().Where("ID", Id).Load();

            return(coll);
        }