Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/01/10 13:58:24 (14 years ago)
Author:
kgrading
Message:

Removed References to HiveLogging and updated the default logging mechanism (#991)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2/Hive.designer.cs

    r3203 r3578  
    17741774    private System.Nullable<double> _Percentage;
    17751775   
    1776     private System.Data.Linq.Binary _SerializedJob;
     1776    private System.Data.Linq.Link<System.Data.Linq.Binary> _SerializedJob;
    17771777   
    17781778    private System.Nullable<System.DateTime> _DateCreated;
     
    19571957    }
    19581958   
    1959     [Column(Storage="_SerializedJob", DbType="VarBinary(MAX)", CanBeNull=true, UpdateCheck=UpdateCheck.Never)]
     1959    [Column(Storage="_SerializedJob", DbType="VarBinary(MAX)", UpdateCheck=UpdateCheck.Never)]
    19601960    public System.Data.Linq.Binary SerializedJob
    19611961    {
    19621962      get
    19631963      {
    1964         return this._SerializedJob;
    1965       }
    1966       set
    1967       {
    1968         if ((this._SerializedJob != value))
     1964        return this._SerializedJob.Value;
     1965      }
     1966      set
     1967      {
     1968        if ((this._SerializedJob.Value != value))
    19691969        {
    19701970          this.OnSerializedJobChanging(value);
    19711971          this.SendPropertyChanging();
    1972           this._SerializedJob = value;
     1972          this._SerializedJob.Value = value;
    19731973          this.SendPropertyChanged("SerializedJob");
    19741974          this.OnSerializedJobChanged();
Note: See TracChangeset for help on using the changeset viewer.