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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }