public UsersParagraphLinkCollection FetchAll()
 {
     UsersParagraphLinkCollection coll = new UsersParagraphLinkCollection();
     Query qry = new Query(UsersParagraphLink.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public UsersParagraphLinkCollection FetchByQuery(Query qry)
 {
     UsersParagraphLinkCollection coll = new UsersParagraphLinkCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public UsersParagraphLinkCollection FetchByID(object Id)
 {
     UsersParagraphLinkCollection coll = new UsersParagraphLinkCollection().Where("ID", Id).Load();
     return coll;
 }