Changeset 15630 for branches/HiveProjectManagement/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.designer.cs
- Timestamp:
- 01/18/18 15:08:25 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveProjectManagement/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.designer.cs
r15577 r15630 390 390 } 391 391 392 [global::System.Data.Linq.Mapping.AssociationAttribute(Name="Resource_AssignedProjectResource", Storage="_Resource", ThisKey="ResourceId", OtherKey="ResourceId", IsForeignKey=true, Delete OnNull=true)]392 [global::System.Data.Linq.Mapping.AssociationAttribute(Name="Resource_AssignedProjectResource", Storage="_Resource", ThisKey="ResourceId", OtherKey="ResourceId", IsForeignKey=true, DeleteRule="CASCADE")] 393 393 public Resource Resource 394 394 { … … 424 424 } 425 425 426 [global::System.Data.Linq.Mapping.AssociationAttribute(Name="Project_AssignedProjectResource", Storage="_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true, Delete OnNull=true)]426 [global::System.Data.Linq.Mapping.AssociationAttribute(Name="Project_AssignedProjectResource", Storage="_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true, DeleteRule="CASCADE")] 427 427 public Project Project 428 428 { … … 2486 2486 private System.Guid _ProjectId; 2487 2487 2488 private global::HeuristicLab.Services.Hive.DataAccess.JobState _State; 2489 2488 2490 private EntitySet<Task> _Jobs; 2489 2491 … … 2510 2512 partial void OnProjectIdChanging(System.Guid value); 2511 2513 partial void OnProjectIdChanged(); 2514 partial void OnStateChanging(global::HeuristicLab.Services.Hive.DataAccess.JobState value); 2515 partial void OnStateChanged(); 2512 2516 #endregion 2513 2517 … … 2641 2645 this.SendPropertyChanged("ProjectId"); 2642 2646 this.OnProjectIdChanged(); 2647 } 2648 } 2649 } 2650 2651 [global::System.Data.Linq.Mapping.ColumnAttribute(Name="JobState", Storage="_State", DbType="VarChar(30)", CanBeNull=false)] 2652 public global::HeuristicLab.Services.Hive.DataAccess.JobState State 2653 { 2654 get 2655 { 2656 return this._State; 2657 } 2658 set 2659 { 2660 if ((this._State != value)) 2661 { 2662 this.OnStateChanging(value); 2663 this.SendPropertyChanging(); 2664 this._State = value; 2665 this.SendPropertyChanged("State"); 2666 this.OnStateChanged(); 2643 2667 } 2644 2668 } … … 5809 5833 } 5810 5834 5811 [global::System.Data.Linq.Mapping.AssociationAttribute(Name="Project_AssignedProjectResource", Storage="_AssignedResources", ThisKey="ProjectId", OtherKey="ProjectId" , DeleteRule="CASCADE")]5835 [global::System.Data.Linq.Mapping.AssociationAttribute(Name="Project_AssignedProjectResource", Storage="_AssignedResources", ThisKey="ProjectId", OtherKey="ProjectId")] 5812 5836 public EntitySet<AssignedProjectResource> AssignedProjectResources 5813 5837 { … … 5848 5872 } 5849 5873 5850 [global::System.Data.Linq.Mapping.AssociationAttribute(Name="Project_ProjectPermission", Storage="_ProjectPermissions", ThisKey="ProjectId", OtherKey="ProjectId" , DeleteRule="CASCADE")]5874 [global::System.Data.Linq.Mapping.AssociationAttribute(Name="Project_ProjectPermission", Storage="_ProjectPermissions", ThisKey="ProjectId", OtherKey="ProjectId")] 5851 5875 public EntitySet<ProjectPermission> ProjectPermissions 5852 5876 { … … 6060 6084 } 6061 6085 6062 [global::System.Data.Linq.Mapping.AssociationAttribute(Name="Project_ProjectPermission", Storage="_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true , DeleteOnNull=true)]6086 [global::System.Data.Linq.Mapping.AssociationAttribute(Name="Project_ProjectPermission", Storage="_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)] 6063 6087 public Project Project 6064 6088 {
Note: See TracChangeset
for help on using the changeset viewer.