public static TMSEventsPhoto Get(System.Int64 phId) { DataSet ds; Database db; string sqlCommand; DbCommand dbCommand; TMSEventsPhoto instance; instance = new TMSEventsPhoto(); db = DatabaseFactory.CreateDatabase(); sqlCommand = "[dbo].gspTMSEventsPhoto_SELECT"; dbCommand = db.GetStoredProcCommand(sqlCommand, phId); // Get results. ds = db.ExecuteDataSet(dbCommand); // Verification. if (ds == null || ds.Tables[0].Rows.Count == 0) { throw new ApplicationException("Could not get TMSEventsPhoto ID:" + phId.ToString() + " from Database."); } // Return results. ds.Tables[0].TableName = TABLE_NAME; instance.MapFrom(ds.Tables[0].Rows[0]); return(instance); }
public static TMSEventsPhoto[] Search(System.Int64?phId, System.Int64?phGlid, System.String phTitle, System.String phImagePath, System.Int32?phStatus) { DataSet ds; Database db; string sqlCommand; DbCommand dbCommand; db = DatabaseFactory.CreateDatabase(); sqlCommand = "[dbo].gspTMSEventsPhoto_SEARCH"; dbCommand = db.GetStoredProcCommand(sqlCommand, phId, phGlid, phTitle, phImagePath, phStatus); ds = db.ExecuteDataSet(dbCommand); ds.Tables[0].TableName = TABLE_NAME; return(TMSEventsPhoto.MapFrom(ds)); }
public static TMSEventsPhoto[] MapFrom(DataSet ds) { List <TMSEventsPhoto> objects; // Initialise Collection. objects = new List <TMSEventsPhoto>(); // 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_EventsPhoto] in DataSet."); } if (ds.Tables[TABLE_NAME].Rows.Count < 1) { throw new ApplicationException("Table [dbo].[TMS_EventsPhoto] is empty."); } // Map DataSet to Instance. foreach (DataRow dr in ds.Tables[TABLE_NAME].Rows) { TMSEventsPhoto instance = new TMSEventsPhoto(); instance.MapFrom(dr); objects.Add(instance); } // Return collection. return(objects.ToArray()); }
public static TMSEventsPhoto[] MapFrom(DataSet ds) { List<TMSEventsPhoto> objects; // Initialise Collection. objects = new List<TMSEventsPhoto>(); // 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_EventsPhoto] in DataSet."); if (ds.Tables[TABLE_NAME].Rows.Count < 1) throw new ApplicationException("Table [dbo].[TMS_EventsPhoto] is empty."); // Map DataSet to Instance. foreach (DataRow dr in ds.Tables[TABLE_NAME].Rows) { TMSEventsPhoto instance = new TMSEventsPhoto(); instance.MapFrom(dr); objects.Add(instance); } // Return collection. return objects.ToArray(); }
public static TMSEventsPhoto Get(System.Int64 phId) { DataSet ds; Database db; string sqlCommand; DbCommand dbCommand; TMSEventsPhoto instance; instance = new TMSEventsPhoto(); db = DatabaseFactory.CreateDatabase(); sqlCommand = "[dbo].gspTMSEventsPhoto_SELECT"; dbCommand = db.GetStoredProcCommand(sqlCommand, phId); // Get results. ds = db.ExecuteDataSet(dbCommand); // Verification. if (ds == null || ds.Tables[0].Rows.Count == 0) throw new ApplicationException("Could not get TMSEventsPhoto ID:" + phId.ToString()+ " from Database."); // Return results. ds.Tables[0].TableName = TABLE_NAME; instance.MapFrom( ds.Tables[0].Rows[0] ); return instance; }