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

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

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

            return(coll);
        }