Changeset 2197 for branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.Database.SQLServerCompact/3.2/DataObjects/InputVariable.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/InputVariable.cs
r2194 r2197 34 34 private EntityRef<Variable> variable; 35 35 [Association(Storage = "variable", ThisKey = "VariableId", OtherKey = "Id", IsForeignKey = true)] 36 public IVariable Variable {36 public Variable Variable { 37 37 get { return variable.Entity; } 38 } 39 40 IVariable IInputVariable.Variable { 41 get { return this.Variable; } 38 42 } 39 43 … … 53 57 private EntityRef<Model> model; 54 58 [Association(Storage = "model", ThisKey = "ModelId", OtherKey = "Id", IsForeignKey = true)] 55 public IModel Model {59 public Model Model { 56 60 get { return model.Entity; } 61 } 62 63 IModel IInputVariable.Model { 64 get { return this.Model;} 57 65 } 58 66 }
Note: See TracChangeset
for help on using the changeset viewer.