Exemplo n.º 1
0
        public TextEntryCollection FetchByQuery(Query qry)
        {
            TextEntryCollection coll = new TextEntryCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public TextEntryCollection FetchAll()
        {
            TextEntryCollection coll = new TextEntryCollection();
            Query qry = new Query(TextEntry.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 3
0
        public TextEntryCollection FetchByID(object ContentID)
        {
            TextEntryCollection coll = new TextEntryCollection().Where("contentID", ContentID).Load();

            return(coll);
        }