Changeset 3968
- Timestamp:
- 06/28/10 12:40:34 (14 years ago)
- Location:
- branches/HeuristicLab.Services.Authentication Prototype/Persistence
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Services.Authentication Prototype/Persistence/DataClasses.dbml
r3962 r3968 11 11 <Column Name="Email" Modifier="Virtual" Type="System.String" CanBeNull="false" /> 12 12 <Column Name="Comment" Modifier="Virtual" Type="System.String" CanBeNull="false" /> 13 <Column Member="Locked" Type="System.Boolean" CanBeNull="false" /> 13 14 <Association Name="HeuristicLabUser_HeuristicLabUserRole" Member="HeuristicLabUserRoles" Storage="_HeuristicLabUserRole" ThisKey="ID" OtherKey="HeuristicLabUserID" Type="HeuristicLabUserRole" /> 14 15 </Type> -
branches/HeuristicLab.Services.Authentication Prototype/Persistence/DataClasses.dbml.layout
r3962 r3968 3 3 <DataContextMoniker Name="/DataClassesDataContext" /> 4 4 <nestedChildShapes> 5 <classShape Id="8a64982c-bf12-42de-930c-12197e5058b2" absoluteBounds="0.5, 0.625, 2, 2. 3478011067708335">5 <classShape Id="8a64982c-bf12-42de-930c-12197e5058b2" absoluteBounds="0.5, 0.625, 2, 2.5401025390625"> 6 6 <DataClassMoniker Name="/DataClassesDataContext/HeuristicLabUser" /> 7 7 <nestedChildShapes> 8 <elementListCompartment Id="c2de162f-d029-4b40-9694-ef3f14c7a783" absoluteBounds="0.5149999999999999, 1.085, 1.9700000000000002, 1. 7878011067708333" name="DataPropertiesCompartment" titleTextColor="Black" itemTextColor="Black" />8 <elementListCompartment Id="c2de162f-d029-4b40-9694-ef3f14c7a783" absoluteBounds="0.5149999999999999, 1.085, 1.9700000000000002, 1.9801025390625" name="DataPropertiesCompartment" titleTextColor="Black" itemTextColor="Black" /> 9 9 </nestedChildShapes> 10 10 </classShape> … … 21 21 </nestedChildShapes> 22 22 </classShape> 23 <associationConnector edgePoints="[(1.5625 : 2.97280110677083); (1.5625 : 3.625)]" fixedFrom="NotFixed" fixedTo="NotFixed">23 <associationConnector edgePoints="[(1.5625 : 3.1651025390625); (1.5625 : 3.625)]" fixedFrom="Algorithm" fixedTo="Algorithm"> 24 24 <AssociationMoniker Name="/DataClassesDataContext/HeuristicLabUser/HeuristicLabUser_HeuristicLabUserRole" /> 25 25 <nodes> -
branches/HeuristicLab.Services.Authentication Prototype/Persistence/DataClasses.designer.cs
r3962 r3968 2 2 //------------------------------------------------------------------------------ 3 3 // <auto-generated> 4 // This code was generated by a tool.5 // Runtime Version:2.0.50727.49274 // Dieser Code wurde von einem Tool generiert. 5 // Laufzeitversion:2.0.50727.4927 6 6 // 7 // Changes to this file may cause incorrect behavior and will be lost if8 // the code is regenerated.7 // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn 8 // der Code erneut generiert wird. 9 9 // </auto-generated> 10 10 //------------------------------------------------------------------------------ … … 112 112 private string _Comment; 113 113 114 private bool _Locked; 115 114 116 private EntitySet<HeuristicLabUserRole> _HeuristicLabUserRole; 115 117 … … 126 128 partial void OnCommentChanging(string value); 127 129 partial void OnCommentChanged(); 130 partial void OnLockedChanging(bool value); 131 partial void OnLockedChanged(); 128 132 #endregion 129 133 … … 246 250 this.SendPropertyChanged("Comment"); 247 251 this.OnCommentChanged(); 252 } 253 } 254 } 255 256 [Column(Storage="_Locked")] 257 public bool Locked 258 { 259 get 260 { 261 return this._Locked; 262 } 263 set 264 { 265 if ((this._Locked != value)) 266 { 267 this.OnLockedChanging(value); 268 this.SendPropertyChanging(); 269 this._Locked = value; 270 this.SendPropertyChanged("Locked"); 271 this.OnLockedChanged(); 248 272 } 249 273 }
Note: See TracChangeset
for help on using the changeset viewer.