public StoryUserHostTagCollection FetchByQuery(Query qry) { StoryUserHostTagCollection coll = new StoryUserHostTagCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public StoryUserHostTagCollection FetchAll() { StoryUserHostTagCollection coll = new StoryUserHostTagCollection(); Query qry = new Query(StoryUserHostTag.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return(coll); }
public StoryUserHostTagCollection FetchByID(object StoryUserHostTagID) { StoryUserHostTagCollection coll = new StoryUserHostTagCollection().Where("StoryUserHostTagID", StoryUserHostTagID).Load(); return(coll); }