- Timestamp:
- 07/07/10 03:26:15 (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
r3970 r4009 12 12 <Column Name="Comment" Modifier="Virtual" Type="System.String" CanBeNull="false" /> 13 13 <Column Name="Locked" Type="System.Boolean" CanBeNull="false" /> 14 <Column Member="FailedLogins" Type="System.Int32" CanBeNull="false" /> 14 15 <Association Name="HeuristicLabUser_HeuristicLabUserRole" Member="HeuristicLabUserRoles" Storage="_HeuristicLabUserRole" ThisKey="ID" OtherKey="HeuristicLabUserID" Type="HeuristicLabUserRole" /> 15 16 </Type> -
branches/HeuristicLab.Services.Authentication Prototype/Persistence/DataClasses.dbml.layout
r3970 r4009 3 3 <DataContextMoniker Name="/DataClassesDataContext" /> 4 4 <nestedChildShapes> 5 <classShape Id="8a64982c-bf12-42de-930c-12197e5058b2" absoluteBounds="0.5, 0.625, 2, 2. 5401025390625">5 <classShape Id="8a64982c-bf12-42de-930c-12197e5058b2" absoluteBounds="0.5, 0.625, 2, 2.7324039713541666"> 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.9801025390625" name="DataPropertiesCompartment" titleTextColor="Black" itemTextColor="Black" />8 <elementListCompartment Id="c2de162f-d029-4b40-9694-ef3f14c7a783" absoluteBounds="0.5149999999999999, 1.085, 1.9700000000000002, 2.1724039713541665" name="DataPropertiesCompartment" titleTextColor="Black" itemTextColor="Black" /> 9 9 </nestedChildShapes> 10 10 </classShape> … … 21 21 </nestedChildShapes> 22 22 </classShape> 23 <associationConnector edgePoints="[(1.5625 : 3. 1651025390625); (1.5625 : 3.625)]" fixedFrom="NotFixed" fixedTo="NotFixed">23 <associationConnector edgePoints="[(1.5625 : 3.35740397135417); (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
r3970 r4009 116 116 private bool _Locked; 117 117 118 private int _FailedLogins; 119 118 120 private EntitySet<HeuristicLabUserRole> _HeuristicLabUserRole; 119 121 … … 142 144 partial void OnLockedChanging(bool value); 143 145 partial void OnLockedChanged(); 146 partial void OnFailedLoginsChanging(int value); 147 partial void OnFailedLoginsChanged(); 144 148 #endregion 145 149 … … 338 342 } 339 343 344 [Column(Storage="_FailedLogins")] 345 [DataMember(Order=10)] 346 public int FailedLogins 347 { 348 get 349 { 350 return this._FailedLogins; 351 } 352 set 353 { 354 if ((this._FailedLogins != value)) 355 { 356 this.OnFailedLoginsChanging(value); 357 this.SendPropertyChanging(); 358 this._FailedLogins = value; 359 this.SendPropertyChanged("FailedLogins"); 360 this.OnFailedLoginsChanged(); 361 } 362 } 363 } 364 340 365 [Association(Name="HeuristicLabUser_HeuristicLabUserRole", Storage="_HeuristicLabUserRole", ThisKey="ID", OtherKey="HeuristicLabUserID")] 341 [DataMember(Order=1 0, EmitDefaultValue=false)]366 [DataMember(Order=11, EmitDefaultValue=false)] 342 367 public EntitySet<HeuristicLabUserRole> HeuristicLabUserRoles 343 368 {
Note: See TracChangeset
for help on using the changeset viewer.