Changeset 2326 for trunk/sources/HeuristicLab.Modeling.Database.SQLServerCompact/3.2/DataObjects/Model.cs
- Timestamp:
- 09/02/09 16:48:56 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Modeling.Database.SQLServerCompact/3.2/DataObjects/Model.cs
r2293 r2326 32 32 public Model() { 33 33 targetVariable = default(EntityRef<Variable>); 34 algorithm = default(EntityRef<Algorithm>); 34 algorithm = default(EntityRef<Algorithm>); 35 35 } 36 36 … … 94 94 } 95 95 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 96 103 private int trainingSamplesStart; 97 104 [Column(Storage = "trainingSamplesStart", CanBeNull = false)]
Note: See TracChangeset
for help on using the changeset viewer.