Changeset 15081 for stable/HeuristicLab.Services.OKB.DataAccess
- Timestamp:
- 06/28/17 22:10:45 (7 years ago)
- Location:
- stable
- Files:
-
- 5 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 13501,13503,13511,13513,13534-13535,13540,13550,13552,13593,13666
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Services.OKB.DataAccess/3.3/HeuristicLab.Services.OKB.DataAccess-3.3.csproj
r11920 r15081 128 128 </ItemGroup> 129 129 <ItemGroup> 130 <Compile Include="CharacteristicType.cs" /> 130 131 <Compile Include="ValueNameType.cs" /> 131 132 <Compile Include="ValueNameCategory.cs" /> -
stable/HeuristicLab.Services.OKB.DataAccess/3.3/OKB.dbml
r8049 r15081 141 141 <Column Name="Id" Type="System.Int64" DbType="BigInt NOT NULL IDENTITY" IsPrimaryKey="true" IsDbGenerated="true" CanBeNull="false" /> 142 142 <Column Name="Name" Type="System.String" DbType="NVarChar(200) NOT NULL" CanBeNull="false" /> 143 <Column Name="Type" Type=" System.Byte" DbType="TinyInt NOT NULL" CanBeNull="false" />143 <Column Name="Type" Type="CharacteristicType" DbType="TinyInt NOT NULL" CanBeNull="false" /> 144 144 <Association Name="Characteristic_CharacteristicValue" Member="CharacteristicValues" ThisKey="Id" OtherKey="CharacteristicId" Type="CharacteristicValue" /> 145 145 </Type> -
stable/HeuristicLab.Services.OKB.DataAccess/3.3/OKB.dbml.layout
r8049 r15081 139 139 </nestedChildShapes> 140 140 </classShape> 141 <associationConnector edgePoints="[(3.24167093356531 : 2.65549967447917); (3.24167093356531 : 8.23159912109375); (5.75 : 8.23159912109375)]" fixedFrom=" Algorithm" fixedTo="Algorithm">141 <associationConnector edgePoints="[(3.24167093356531 : 2.65549967447917); (3.24167093356531 : 8.23159912109375); (5.75 : 8.23159912109375)]" fixedFrom="NotFixed" fixedTo="NotFixed"> 142 142 <AssociationMoniker Name="/OKBDataContext/Algorithm/Algorithm_Run" /> 143 143 <nodes> … … 146 146 </nodes> 147 147 </associationConnector> 148 <associationConnector edgePoints="[(12.7565713753709 : 2.65549967447917); (12.7565713753709 : 8.23159912109375); (8.13243692318721 : 8.23159912109375 : JumpStart); (7.96577025652055 : 8.23159912109375 : JumpEnd); (7.75 : 8.23159912109375)]" fixedFrom=" Algorithm" fixedTo="Algorithm">148 <associationConnector edgePoints="[(12.7565713753709 : 2.65549967447917); (12.7565713753709 : 8.23159912109375); (8.13243692318721 : 8.23159912109375 : JumpStart); (7.96577025652055 : 8.23159912109375 : JumpEnd); (7.75 : 8.23159912109375)]" fixedFrom="NotFixed" fixedTo="NotFixed"> 149 149 <AssociationMoniker Name="/OKBDataContext/Problem/Problem_Run" /> 150 150 <nodes> -
stable/HeuristicLab.Services.OKB.DataAccess/3.3/OKB.designer.cs
r11920 r15081 3 3 // <auto-generated> 4 4 // This code was generated by a tool. 5 // Runtime Version:4.0.30319.34 0145 // Runtime Version:4.0.30319.34209 6 6 // 7 7 // Changes to this file may cause incorrect behavior and will be lost if … … 3140 3140 private string _Name; 3141 3141 3142 private byte _Type;3142 private CharacteristicType _Type; 3143 3143 3144 3144 private EntitySet<CharacteristicValue> _CharacteristicValues; … … 3152 3152 partial void OnNameChanging(string value); 3153 3153 partial void OnNameChanged(); 3154 partial void OnTypeChanging( byte value);3154 partial void OnTypeChanging(CharacteristicType value); 3155 3155 partial void OnTypeChanged(); 3156 3156 #endregion … … 3202 3202 } 3203 3203 3204 [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Type", DbType="TinyInt NOT NULL" )]3205 public byte Type3204 [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Type", DbType="TinyInt NOT NULL", CanBeNull=false)] 3205 public CharacteristicType Type 3206 3206 { 3207 3207 get
Note: See TracChangeset
for help on using the changeset viewer.