Beispiel #1
0
        public static TagCollection FetchStoryTags(int storyID)
        {
            TagCollection tags = new TagCollection();

            tags.LoadAndCloseReader(SPs.Kick_GetTagsByStoryID(storyID).GetReader());
            return(tags);
        }
 public TagCollection FetchAll()
 {
     TagCollection coll = new TagCollection();
     Query qry = new Query(Tag.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Beispiel #3
0
        public TagCollection FetchByQuery(Query qry)
        {
            TagCollection coll = new TagCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #4
0
        public TagCollection FetchAll()
        {
            TagCollection coll = new TagCollection();
            Query         qry  = new Query(Tag.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #5
0
 public static TagCollection FetchStoryTags(int storyID)
 {
     TagCollection tags = new TagCollection();
     tags.LoadAndCloseReader(SPs.Kick_GetTagsByStoryID(storyID).GetReader());
     return tags;
 }
 public TagCollection FetchByQuery(Query qry)
 {
     TagCollection coll = new TagCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }