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

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

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

            return(coll);
        }