Exemple #1
0
        public PSpecyCollection FetchByQuery(Query qry)
        {
            PSpecyCollection coll = new PSpecyCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
 public PSpecyCollection FetchAll()
 {
     PSpecyCollection coll = new PSpecyCollection();
     Query qry = new Query(PSpecy.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemple #3
0
        public PSpecyCollection FetchAll()
        {
            PSpecyCollection coll = new PSpecyCollection();
            Query            qry  = new Query(PSpecy.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #4
0
        public PSpecyCollection FetchByID(object SpcRecID)
        {
            PSpecyCollection coll = new PSpecyCollection().Where("SpcRecID", SpcRecID).Load();

            return(coll);
        }
 public PSpecyCollection FetchByQuery(Query qry)
 {
     PSpecyCollection coll = new PSpecyCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public PSpecyCollection FetchByID(object SpcRecID)
 {
     PSpecyCollection coll = new PSpecyCollection().Where("SpcRecID", SpcRecID).Load();
     return coll;
 }