Changeset 13501 for trunk/sources/HeuristicLab.Services.OKB.DataAccess
- Timestamp:
- 01/12/16 16:08:38 (9 years ago)
- Location:
- trunk/sources/HeuristicLab.Services.OKB.DataAccess/3.3
- Files:
-
- 4 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Services.OKB.DataAccess/3.3/CharacteristicType.cs
r13484 r13501 21 21 22 22 namespace HeuristicLab.Services.OKB.DataAccess { 23 public enum ValueNameType {23 public enum CharacteristicType { 24 24 Bool = 0, 25 25 Int = 1, … … 28 28 Double = 4, 29 29 String = 5, 30 Binary = 6, 31 Percent = 7, 32 TimeSpan = 8 30 Percent = 6, 31 TimeSpan = 7 33 32 } 34 33 } -
trunk/sources/HeuristicLab.Services.OKB.DataAccess/3.3/HeuristicLab.Services.OKB.DataAccess-3.3.csproj
r11623 r13501 128 128 </ItemGroup> 129 129 <ItemGroup> 130 <Compile Include="CharacteristicType.cs" /> 130 131 <Compile Include="ValueNameType.cs" /> 131 132 <Compile Include="ValueNameCategory.cs" /> -
trunk/sources/HeuristicLab.Services.OKB.DataAccess/3.3/OKB.dbml
r8049 r13501 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> -
trunk/sources/HeuristicLab.Services.OKB.DataAccess/3.3/OKB.dbml.layout
r8049 r13501 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> -
trunk/sources/HeuristicLab.Services.OKB.DataAccess/3.3/OKB.designer.cs
r11623 r13501 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.