- Timestamp:
- 08/24/10 02:37:56 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Services.OKB/3.3/TableService.cs
r4279 r4298 66 66 public void UpdateDataTable(DataTable updatedRows, string tableName) { 67 67 logger.Info("updating table: " + tableName); 68 Type tableType = Assembly.GetAssembly(typeof(Run)).GetType("HeuristicLab. OKB." + tableName, true);68 Type tableType = Assembly.GetAssembly(typeof(Run)).GetType("HeuristicLab.Services.OKB.DataAccess." + tableName, true); 69 69 var properties = from p in tableType.GetProperties() 70 70 where SupportedTypes.Contains(p.PropertyType) … … 126 126 public void DeleteTableRows(int[] ids, string tableName) { 127 127 logger.Info("delete rows from table: " + tableName); 128 Type tableType = Assembly.GetAssembly(typeof(Run)).GetType("HeuristicLab. OKB." + tableName, true);128 Type tableType = Assembly.GetAssembly(typeof(Run)).GetType("HeuristicLab.Services.OKB.DataAccess" + tableName, true); 129 129 OKBDataContext okb = GetDataContext(); 130 130 ITable table = okb.GetTable(tableType); … … 148 148 public DataTable PrepareDataTable(string tableName, out int count) { 149 149 logger.Info("preparing data table: " + tableName); 150 Type tableType = Assembly.GetAssembly(typeof(Run)).GetType("HeuristicLab. OKB." + tableName, true);150 Type tableType = Assembly.GetAssembly(typeof(Run)).GetType("HeuristicLab.Services.OKB.DataAccess" + tableName, true); 151 151 properties = from p in tableType.GetProperties() 152 152 where SupportedTypes.Contains(p.PropertyType)
Note: See TracChangeset
for help on using the changeset viewer.