- Timestamp:
- 08/24/10 02:37:56 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Services.OKB.AttributeSelection/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Services.OKB.AttributeSelection/3.3/AttributeSelector.cs
r4279 r4298 56 56 typeof(Client).Name, 57 57 typeof(User).Name, 58 typeof(ExperimentCreator).Name,59 58 }; 60 59 … … 77 76 TableName = tableName; 78 77 FieldName = fieldName; 79 if (tableName == typeof(ExperimentCreator).Name)80 tableName = typeof(User).Name;81 78 TableType = GetTableType(tableName); 82 79 ITable Table = GetTable(okb, tableName); -
trunk/sources/HeuristicLab.Services.OKB.AttributeSelection/3.3/RunAttributeSelector.cs
r4279 r4298 85 85 { typeof(User), typeof(Run) }, 86 86 { typeof(Experiment), typeof(Run) }, 87 { typeof(ExperimentCreator), typeof(Experiment) },88 87 { typeof(Project), typeof(Experiment) }, 89 88 { typeof(Algorithm), typeof(Experiment) }, … … 198 197 ExpressionTools.GetSelector(run => run.Experiment, x => x.Id), 199 198 200 ExpressionTools.GetSelector(run => run.Experiment.ExperimentCreators.Single(), xc => xc.User.Id),201 ExpressionTools.GetSelector(run => run.Experiment.ExperimentCreators.Single(), xc => xc.User.Name),202 203 199 ExpressionTools.GetSelector(run => run.Experiment.Project, p => p.Id), 204 200 ExpressionTools.GetSelector(run => run.Experiment.Project, p => p.Name),
Note: See TracChangeset
for help on using the changeset viewer.