Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/07/10 03:26:15 (14 years ago)
Author:
bfarka
Message:

fixed bugs in membership provider 32 out of 43 tests are now passing.. (#1046)

Location:
branches/HeuristicLab.Services.Authentication Prototype/Persistence
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Services.Authentication Prototype/Persistence/DataClasses.dbml

    r3970 r4009  
    1212      <Column Name="Comment" Modifier="Virtual" Type="System.String" CanBeNull="false" />
    1313      <Column Name="Locked" Type="System.Boolean" CanBeNull="false" />
     14      <Column Member="FailedLogins" Type="System.Int32" CanBeNull="false" />
    1415      <Association Name="HeuristicLabUser_HeuristicLabUserRole" Member="HeuristicLabUserRoles" Storage="_HeuristicLabUserRole" ThisKey="ID" OtherKey="HeuristicLabUserID" Type="HeuristicLabUserRole" />
    1516    </Type>
  • branches/HeuristicLab.Services.Authentication Prototype/Persistence/DataClasses.dbml.layout

    r3970 r4009  
    33  <DataContextMoniker Name="/DataClassesDataContext" />
    44  <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">
    66      <DataClassMoniker Name="/DataClassesDataContext/HeuristicLabUser" />
    77      <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" />
    99      </nestedChildShapes>
    1010    </classShape>
     
    2121      </nestedChildShapes>
    2222    </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">
    2424      <AssociationMoniker Name="/DataClassesDataContext/HeuristicLabUser/HeuristicLabUser_HeuristicLabUserRole" />
    2525      <nodes>
  • branches/HeuristicLab.Services.Authentication Prototype/Persistence/DataClasses.designer.cs

    r3970 r4009  
    116116    private bool _Locked;
    117117   
     118    private int _FailedLogins;
     119   
    118120    private EntitySet<HeuristicLabUserRole> _HeuristicLabUserRole;
    119121   
     
    142144    partial void OnLockedChanging(bool value);
    143145    partial void OnLockedChanged();
     146    partial void OnFailedLoginsChanging(int value);
     147    partial void OnFailedLoginsChanged();
    144148    #endregion
    145149   
     
    338342    }
    339343   
     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   
    340365    [Association(Name="HeuristicLabUser_HeuristicLabUserRole", Storage="_HeuristicLabUserRole", ThisKey="ID", OtherKey="HeuristicLabUserID")]
    341     [DataMember(Order=10, EmitDefaultValue=false)]
     366    [DataMember(Order=11, EmitDefaultValue=false)]
    342367    public EntitySet<HeuristicLabUserRole> HeuristicLabUserRoles
    343368    {
Note: See TracChangeset for help on using the changeset viewer.