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

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

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

            return(coll);
        }