public LUserFormControlCollection FetchAll()
 {
     LUserFormControlCollection coll = new LUserFormControlCollection();
     Query qry = new Query(LUserFormControl.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public LUserFormControlCollection FetchByQuery(Query qry)
 {
     LUserFormControlCollection coll = new LUserFormControlCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public LUserFormControlCollection FetchByID(object UserName)
 {
     LUserFormControlCollection coll = new LUserFormControlCollection().Where("UserName", UserName).Load();
     return coll;
 }