Changeset 9426
- Timestamp:
- 05/02/13 14:55:45 (12 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.dbml
r9123 r9426 114 114 <Type Name="TaskData"> 115 115 <Column Name="TaskId" Storage="_JobId" Type="System.Guid" DbType="UniqueIdentifier NOT NULL" IsPrimaryKey="true" CanBeNull="false" /> 116 <Column Name="Data" Type="System.Data.Linq.Binary" DbType="VarBinary(MAX)" CanBeNull="false" UpdateCheck="Never" />116 <Column Name="Data" Type="System.Data.Linq.Binary" DbType="VarBinary(MAX)" CanBeNull="false" UpdateCheck="Never" IsDelayLoaded="true" /> 117 117 <Column Name="LastUpdate" Type="System.DateTime" DbType="DateTime" CanBeNull="false" /> 118 118 <Association Name="Task_TaskData" Member="Task" Storage="_Job" ThisKey="TaskId" OtherKey="TaskId" Type="Task" IsForeignKey="true" /> … … 123 123 <Column Name="PluginDataId" Type="System.Guid" DbType="UniqueIdentifier NOT NULL" IsPrimaryKey="true" IsDbGenerated="true" CanBeNull="false" /> 124 124 <Column Name="PluginId" Type="System.Guid" DbType="UniqueIdentifier NOT NULL" CanBeNull="false" /> 125 <Column Name="Data" Type="System.Data.Linq.Binary" DbType="VarBinary(MAX) NOT NULL" CanBeNull="false" UpdateCheck="Never" />125 <Column Name="Data" Type="System.Data.Linq.Binary" DbType="VarBinary(MAX) NOT NULL" CanBeNull="false" UpdateCheck="Never" IsDelayLoaded="true" /> 126 126 <Column Name="FileName" Type="System.String" DbType="VarChar(MAX)" CanBeNull="false" /> 127 127 <Association Name="Plugin_PluginData" Member="Plugin" ThisKey="PluginId" OtherKey="PluginId" Type="Plugin" IsForeignKey="true" /> -
trunk/sources/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.designer.cs
r9123 r9426 3 3 // <auto-generated> 4 4 // This code was generated by a tool. 5 // Runtime Version:4.0.30319.1 79295 // Runtime Version:4.0.30319.18034 6 6 // 7 7 // Changes to this file may cause incorrect behavior and will be lost if … … 2661 2661 private System.Guid _JobId; 2662 2662 2663 private System.Data.Linq. Binary_Data;2663 private System.Data.Linq.Link<System.Data.Linq.Binary> _Data; 2664 2664 2665 2665 private System.DateTime _LastUpdate; … … 2714 2714 get 2715 2715 { 2716 return this._Data ;2717 } 2718 set 2719 { 2720 if ((this._Data != value))2716 return this._Data.Value; 2717 } 2718 set 2719 { 2720 if ((this._Data.Value != value)) 2721 2721 { 2722 2722 this.OnDataChanging(value); 2723 2723 this.SendPropertyChanging(); 2724 this._Data = value;2724 this._Data.Value = value; 2725 2725 this.SendPropertyChanged("Data"); 2726 2726 this.OnDataChanged(); … … 2814 2814 private System.Guid _PluginId; 2815 2815 2816 private System.Data.Linq. Binary_Data;2816 private System.Data.Linq.Link<System.Data.Linq.Binary> _Data; 2817 2817 2818 2818 private string _FileName; … … 2889 2889 get 2890 2890 { 2891 return this._Data ;2892 } 2893 set 2894 { 2895 if ((this._Data != value))2891 return this._Data.Value; 2892 } 2893 set 2894 { 2895 if ((this._Data.Value != value)) 2896 2896 { 2897 2897 this.OnDataChanging(value); 2898 2898 this.SendPropertyChanging(); 2899 this._Data = value;2899 this._Data.Value = value; 2900 2900 this.SendPropertyChanged("Data"); 2901 2901 this.OnDataChanged(); -
trunk/sources/HeuristicLab.Services.Hive/3.3/Convert.cs
r9266 r9426 67 67 target.LastHeartbeat = source.LastHeartbeat; 68 68 target.State = Convert.ToEntity(source.State); 69 if (target.StateLogs == null) target.StateLogs = new EntitySet<DB.StateLog>();70 69 foreach (DT.StateLog sl in source.StateLog.Where(x => x.Id == Guid.Empty)) { 71 70 target.StateLogs.Add(Convert.ToEntity(sl));
Note: See TracChangeset
for help on using the changeset viewer.