- Timestamp:
- 08/03/10 17:20:46 (14 years ago)
- Location:
- branches/3.2/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2/HiveDataContext.cs
r3931 r4140 1941 1941 private System.Nullable<double> _Percentage; 1942 1942 1943 private string _Exception; 1944 1943 1945 private System.Data.Linq.Link<System.Data.Linq.Binary> _SerializedJob; 1944 1946 … … 1985 1987 partial void OnPercentageChanging(System.Nullable<double> value); 1986 1988 partial void OnPercentageChanged(); 1989 partial void OnExceptionChanging(string value); 1990 partial void OnExceptionChanged(); 1987 1991 partial void OnSerializedJobChanging(System.Data.Linq.Binary value); 1988 1992 partial void OnSerializedJobChanged(); … … 2124 2128 } 2125 2129 2130 [Column(Storage="_Exception", DbType="VarChar(MAX)")] 2131 public string Exception 2132 { 2133 get 2134 { 2135 return this._Exception; 2136 } 2137 set 2138 { 2139 if ((this._Exception != value)) 2140 { 2141 this.OnExceptionChanging(value); 2142 this.SendPropertyChanging(); 2143 this._Exception = value; 2144 this.SendPropertyChanged("Exception"); 2145 this.OnExceptionChanged(); 2146 } 2147 } 2148 } 2149 2126 2150 [Column(Storage="_SerializedJob", DbType="VarBinary(MAX)", UpdateCheck=UpdateCheck.Never)] 2127 2151 public System.Data.Linq.Binary SerializedJob -
branches/3.2/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2/HiveDataContext.xml
r3931 r4140 99 99 <Column Name="ResourceId" Member="ResourceId" DbType="UniqueIdentifier" Type="System.Guid" CanBeNull="true"/> 100 100 <Column Name="Percentage" Member="Percentage" DbType="Float" Type="System.Double" CanBeNull="true"/> 101 <Column Name="Exception" Member="Exception" DbType="VarChar(MAX)" Type="System.String" CanBeNull="true"/> 101 102 <Column Name="SerializedJob" Member="SerializedJob" DbType="VarBinary(MAX)" UpdateCheck="Never" Type="System.Data.Linq.Binary" IsDelayLoaded="true"/> 102 103 <Column Name="DateCreated" Member="DateCreated" DbType="DateTime" Type="System.DateTime" CanBeNull="true"/> -
branches/3.2/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2/JobDao.cs
r3931 r4140 167 167 target.DateFinished = source.DateFinished; 168 168 target.JobId = source.Id; 169 169 170 170 target.Percentage = source.Percentage; 171 target.Exception = source.Exception; 171 172 172 173 target.Priority = source.Priority; … … 195 196 target.DateFinished = source.DateFinished; 196 197 target.Id = source.JobId; 197 198 199 target.Exception = source.Exception; 198 200 target.Percentage = source.Percentage; 199 201
Note: See TracChangeset
for help on using the changeset viewer.