- Timestamp:
- 08/18/09 12:34:06 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Modeling.Database.SQLServerCompact/3.2/DataObjects/Model.cs
r2229 r2293 65 65 public Algorithm Algorithm { 66 66 get { return this.algorithm.Entity; } 67 //private set {68 // Algorithm previousValue = algorithm.Entity;69 // if (previousValue != value || (!algorithm.HasLoadedOrAssignedValue)) {70 // if (previousValue != null) {71 // algorithm.Entity = null;72 // }73 // algorithm.Entity = value;74 // if (value != null) {75 // algorithmId = value.Id;76 // }77 // }78 //}79 67 } 80 68 … … 100 88 public Variable TargetVariable { 101 89 get { return this.targetVariable.Entity; } 102 //private set {103 // Variable previousValue = targetVariable.Entity;104 // if (previousValue != value || (!targetVariable.HasLoadedOrAssignedValue)) {105 // if (previousValue != null) {106 // targetVariable.Entity = null;107 // }108 // targetVariable.Entity = value;109 // if (value != null) {110 // targetVariableId = value.Id;111 // }112 // }113 //}114 90 } 115 91
Note: See TracChangeset
for help on using the changeset viewer.