Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/27/13 10:28:48 (11 years ago)
Author:
pfleck
Message:

#2063:
StatisticsGenerator fills and updates client dimension table.
Removed week from time dimension table.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.designer.cs

    r9524 r9538  
    55755575    private System.DateTime _Day;
    55765576   
    5577     private System.DateTime _Week;
    5578    
    55795577    private System.DateTime _Month;
    55805578   
     
    55975595    partial void OnDayChanging(System.DateTime value);
    55985596    partial void OnDayChanged();
    5599     partial void OnWeekChanging(System.DateTime value);
    5600     partial void OnWeekChanged();
    56015597    partial void OnMonthChanging(System.DateTime value);
    56025598    partial void OnMonthChanged();
     
    56695665          this.SendPropertyChanged("Day");
    56705666          this.OnDayChanged();
    5671         }
    5672       }
    5673     }
    5674    
    5675     [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Week", DbType="Date NOT NULL")]
    5676     public System.DateTime Week
    5677     {
    5678       get
    5679       {
    5680         return this._Week;
    5681       }
    5682       set
    5683       {
    5684         if ((this._Week != value))
    5685         {
    5686           this.OnWeekChanging(value);
    5687           this.SendPropertyChanging();
    5688           this._Week = value;
    5689           this.SendPropertyChanged("Week");
    5690           this.OnWeekChanged();
    56915667        }
    56925668      }
Note: See TracChangeset for help on using the changeset viewer.