public static TeammetadataCollection GetAll() {
     resourceSchema.Dal.Teammetadata dbo = null;
     try {
         dbo = new resourceSchema.Dal.Teammetadata();
         System.Data.DataSet ds = dbo.TeamMetaData_Select_All();
         TeammetadataCollection collection = new TeammetadataCollection();
         if (GlobalTools.IsSafeDataSet(ds)) {
             for (int i = 0; (i < ds.Tables[0].Rows.Count); i = (i + 1)) {
                 Teammetadata obj = new Teammetadata();
                 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();
         }
     }
 }