Changeset 2197 for branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.Database.SQLServerCompact/3.2/DataObjects/InputVariableResult.cs
- Timestamp:
- 07/28/09 16:28:52 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.Database.SQLServerCompact/3.2/DataObjects/InputVariableResult.cs
r2194 r2197 37 37 private EntityRef<Variable> variable; 38 38 [Association(Storage = "variable", ThisKey = "VariableId", OtherKey = "Id", IsForeignKey = true)] 39 public IVariable Variable {39 public Variable Variable { 40 40 get { return variable.Entity; } 41 } 42 43 IVariable IInputVariableResult.Variable { 44 get { return this.Variable; } 41 45 } 42 46 … … 56 60 private EntityRef<Model> model; 57 61 [Association(Storage = "model", ThisKey = "ModelId", OtherKey = "Id", IsForeignKey = true)] 58 public IModel Model {62 public Model Model { 59 63 get { return model.Entity; } 64 } 65 66 IModel IInputVariableResult.Model { 67 get { return this.Model; } 60 68 } 61 69 … … 75 83 private EntityRef<Result> result; 76 84 [Association(Storage = "result", ThisKey = "ResultId", OtherKey = "Id", IsForeignKey = true)] 77 public IResult Result {85 public Result Result { 78 86 get { return result.Entity; } 87 } 88 89 IResult IInputVariableResult.Result { 90 get { return this.Result; } 79 91 } 80 92
Note: See TracChangeset
for help on using the changeset viewer.