Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/13/11 00:27:59 (13 years ago)
Author:
ascheibe
Message:

#1233

  • implemented usage of checksums for comparing assemblies
  • re-added CreateHiveDatabaseApplication.cs to project
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.DataAccess/3.4/HiveDataContext.designer.cs

    r6267 r6407  
    444444    private System.DateTime _DateCreated;
    445445   
     446    private byte[] _Hash;
     447   
    446448    private EntitySet<RequiredPlugin> _RequiredPlugins;
    447449   
     
    464466    partial void OnDateCreatedChanging(System.DateTime value);
    465467    partial void OnDateCreatedChanged();
     468    partial void OnHashChanging(byte[] value);
     469    partial void OnHashChanged();
    466470    #endregion
    467471   
     
    589593          this.SendPropertyChanged("DateCreated");
    590594          this.OnDateCreatedChanged();
     595        }
     596      }
     597    }
     598   
     599    [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Hash", DbType="VarBinary(20)")]
     600    public byte[] Hash
     601    {
     602      get
     603      {
     604        return this._Hash;
     605      }
     606      set
     607      {
     608        if ((this._Hash != value))
     609        {
     610          this.OnHashChanging(value);
     611          this.SendPropertyChanging();
     612          this._Hash = value;
     613          this.SendPropertyChanged("Hash");
     614          this.OnHashChanged();
    591615        }
    592616      }
Note: See TracChangeset for help on using the changeset viewer.