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/InputVariable.cs

    r2194 r2197  
    3434    private EntityRef<Variable> variable;
    3535    [Association(Storage = "variable", ThisKey = "VariableId", OtherKey = "Id", IsForeignKey = true)]
    36     public IVariable Variable {
     36    public Variable Variable {
    3737      get { return variable.Entity; }
     38    }
     39
     40    IVariable IInputVariable.Variable {
     41      get { return this.Variable; }
    3842    }
    3943
     
    5357    private EntityRef<Model> model;
    5458    [Association(Storage = "model", ThisKey = "ModelId", OtherKey = "Id", IsForeignKey = true)]
    55     public IModel Model {
     59    public Model Model {
    5660      get { return model.Entity; }
     61    }
     62
     63    IModel IInputVariable.Model {
     64      get { return this.Model;}
    5765    }
    5866  }
Note: See TracChangeset for help on using the changeset viewer.