public static TMSSEOManagement[] MapFrom(DataSet ds) { List<TMSSEOManagement> objects; // Initialise Collection. objects = new List<TMSSEOManagement>(); // Validation. if (ds == null) throw new ApplicationException("Cannot map to dataset null."); else if (ds.Tables[TABLE_NAME].Rows.Count == 0) return objects.ToArray(); if (ds.Tables[TABLE_NAME] == null) throw new ApplicationException("Cannot find table [dbo].[TMS_SEOManagement] in DataSet."); if (ds.Tables[TABLE_NAME].Rows.Count < 1) throw new ApplicationException("Table [dbo].[TMS_SEOManagement] is empty."); // Map DataSet to Instance. foreach (DataRow dr in ds.Tables[TABLE_NAME].Rows) { TMSSEOManagement instance = new TMSSEOManagement(); instance.MapFrom(dr); objects.Add(instance); } // Return collection. return objects.ToArray(); }
public static TMSSEOManagement Get(System.Int64 seoId) { DataSet ds; Database db; string sqlCommand; DbCommand dbCommand; TMSSEOManagement instance; instance = new TMSSEOManagement(); db = DatabaseFactory.CreateDatabase(); sqlCommand = "[dbo].gspTMSSEOManagement_SELECT"; dbCommand = db.GetStoredProcCommand(sqlCommand, seoId); // Get results. ds = db.ExecuteDataSet(dbCommand); // Verification. if (ds == null || ds.Tables[0].Rows.Count == 0) throw new ApplicationException("Could not get TMSSEOManagement ID:" + seoId.ToString()+ " from Database."); // Return results. ds.Tables[0].TableName = TABLE_NAME; instance.MapFrom( ds.Tables[0].Rows[0] ); return instance; }