public static UserlinksCollection GetAll() {
     resourceSchema.Dal.Userlinks dbo = null;
     try {
         dbo = new resourceSchema.Dal.Userlinks();
         System.Data.DataSet ds = dbo.UserLinks_Select_All();
         UserlinksCollection collection = new UserlinksCollection();
         if (GlobalTools.IsSafeDataSet(ds)) {
             for (int i = 0; (i < ds.Tables[0].Rows.Count); i = (i + 1)) {
                 Userlinks obj = new Userlinks();
                 obj.Fill(ds.Tables[0].Rows[i]);
                 if ((obj != null)) {
                     collection.Add(obj);
                 }
             }
         }
         return collection;
     }
     catch (System.Exception ) {
         throw;
     }
     finally {
         if ((dbo != null)) {
             dbo.Dispose();
         }
     }
 }
 private void Clean() {
     this.Sysid = null;
     this._userstatussysid = null;
     this._usertypesysid = null;
     this.Publicid = null;
     this.Path = string.Empty;
     this.Createdate = null;
     this.Lastmodifieddate = null;
     this.IsReadonly = null;
     this.Active = null;
     this._userattributesCollection = null;
     this._userlinksCollection = null;
     this._userlinksCollection2 = null;
     this._usermetadataCollection = null;
     this.Userstatus = null;
     this.Usertypes = null;
     this._usertagsCollection = null;
     this._userteammembersCollection = null;
 }