예제 #1
0
 public SimpleHtmlCollection FetchAll()
 {
     SimpleHtmlCollection coll = new SimpleHtmlCollection();
     Query qry = new Query(SimpleHtml.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
예제 #2
0
 public SimpleHtmlCollection FetchByQuery(Query qry)
 {
     SimpleHtmlCollection coll = new SimpleHtmlCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
예제 #3
0
 public SimpleHtmlCollection FetchByID(object SimpleHtmlId)
 {
     SimpleHtmlCollection coll = new SimpleHtmlCollection().Where("SimpleHtmlId", SimpleHtmlId).Load();
     return coll;
 }