Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/28/09 16:28:52 (15 years ago)
Author:
mkommend
Message:

adapted connection string and explicitly implemented the defined interfaces in hl.modeling.database (ticket #712)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.Database.SQLServerCompact/3.2/DataObjects/InputVariableResult.cs

    r2194 r2197  
    3737    private EntityRef<Variable> variable;
    3838    [Association(Storage = "variable", ThisKey = "VariableId", OtherKey = "Id", IsForeignKey = true)]
    39     public IVariable Variable {
     39    public Variable Variable {
    4040      get { return variable.Entity; }
     41    }
     42
     43    IVariable IInputVariableResult.Variable {
     44      get { return this.Variable; }
    4145    }
    4246
     
    5660    private EntityRef<Model> model;
    5761    [Association(Storage = "model", ThisKey = "ModelId", OtherKey = "Id", IsForeignKey = true)]
    58     public IModel Model {
     62    public Model Model {
    5963      get { return model.Entity; }
     64    }
     65
     66    IModel IInputVariableResult.Model {
     67      get { return this.Model; }
    6068    }
    6169
     
    7583    private EntityRef<Result> result;
    7684    [Association(Storage = "result", ThisKey = "ResultId", OtherKey = "Id", IsForeignKey = true)]
    77     public IResult Result {
     85    public Result Result {
    7886      get { return result.Entity; }
     87    }
     88
     89    IResult IInputVariableResult.Result {
     90      get { return this.Result; }
    7991    }
    8092
Note: See TracChangeset for help on using the changeset viewer.