コード例 #1
0
 public AspnetWebEventEventCollection FetchAll()
 {
     AspnetWebEventEventCollection coll = new AspnetWebEventEventCollection();
     Query qry = new Query(AspnetWebEventEvent.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #2
0
 public AspnetWebEventEventCollection FetchByQuery(Query qry)
 {
     AspnetWebEventEventCollection coll = new AspnetWebEventEventCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #3
0
 public AspnetWebEventEventCollection FetchByID(object EventId)
 {
     AspnetWebEventEventCollection coll = new AspnetWebEventEventCollection().Where("EventId", EventId).Load();
     return coll;
 }