Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/02/09 16:48:56 (15 years ago)
Author:
mkommend
Message:

added name in IModel
added update methods for IModel and ModelData
(ticket #712)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Modeling.Database.SQLServerCompact/3.2/DataObjects/Model.cs

    r2293 r2326  
    3232    public Model() {
    3333      targetVariable = default(EntityRef<Variable>);
    34       algorithm = default(EntityRef<Algorithm>);
     34      algorithm = default(EntityRef<Algorithm>);     
    3535    }
    3636
     
    9494    }
    9595
     96    private string name;
     97    [Column(Storage = "name", CanBeNull = true)]
     98    public string Name {
     99      get { return this.name; }
     100      set { this.name = value; }
     101    }
     102
    96103    private int trainingSamplesStart;
    97104    [Column(Storage = "trainingSamplesStart", CanBeNull = false)]
Note: See TracChangeset for help on using the changeset viewer.