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

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

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

            return(coll);
        }