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

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

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

            return(coll);
        }