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

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

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

            return(coll);
        }