public AspnetWebEventEventCollection FetchByQuery(Query qry)
        {
            AspnetWebEventEventCollection coll = new AspnetWebEventEventCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public AspnetWebEventEventCollection FetchAll()
        {
            AspnetWebEventEventCollection coll = new AspnetWebEventEventCollection();
            Query qry = new Query(AspnetWebEventEvent.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public AspnetWebEventEventCollection FetchByID(object EventId)
        {
            AspnetWebEventEventCollection coll = new AspnetWebEventEventCollection().Where("EventId", EventId).Load();

            return(coll);
        }