Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3968


Ignore:
Timestamp:
06/28/10 12:40:34 (14 years ago)
Author:
bfarka
Message:

added field "isLocked" to linq classes (#1055)

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

Legend:

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

    r3962 r3968  
    1111      <Column Name="Email" Modifier="Virtual" Type="System.String" CanBeNull="false" />
    1212      <Column Name="Comment" Modifier="Virtual" Type="System.String" CanBeNull="false" />
     13      <Column Member="Locked" Type="System.Boolean" CanBeNull="false" />
    1314      <Association Name="HeuristicLabUser_HeuristicLabUserRole" Member="HeuristicLabUserRoles" Storage="_HeuristicLabUserRole" ThisKey="ID" OtherKey="HeuristicLabUserID" Type="HeuristicLabUserRole" />
    1415    </Type>
  • branches/HeuristicLab.Services.Authentication Prototype/Persistence/DataClasses.dbml.layout

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

    r3962 r3968  
    22//------------------------------------------------------------------------------
    33// <auto-generated>
    4 //     This code was generated by a tool.
    5 //     Runtime Version:2.0.50727.4927
     4//     Dieser Code wurde von einem Tool generiert.
     5//     Laufzeitversion:2.0.50727.4927
    66//
    7 //     Changes to this file may cause incorrect behavior and will be lost if
    8 //     the code is regenerated.
     7//     Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
     8//     der Code erneut generiert wird.
    99// </auto-generated>
    1010//------------------------------------------------------------------------------
     
    112112    private string _Comment;
    113113   
     114    private bool _Locked;
     115   
    114116    private EntitySet<HeuristicLabUserRole> _HeuristicLabUserRole;
    115117   
     
    126128    partial void OnCommentChanging(string value);
    127129    partial void OnCommentChanged();
     130    partial void OnLockedChanging(bool value);
     131    partial void OnLockedChanged();
    128132    #endregion
    129133   
     
    246250          this.SendPropertyChanged("Comment");
    247251          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();
    248272        }
    249273      }
Note: See TracChangeset for help on using the changeset viewer.