- Timestamp:
- 02/22/11 03:08:43 (14 years ago)
- Location:
- branches/OKB (trunk integration)/HeuristicLab.Services.OKB.DataAccess/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OKB (trunk integration)/HeuristicLab.Services.OKB.DataAccess/3.3/OKB.dbml
r5478 r5534 66 66 <Column Name="PlatformId" Type="System.Int64" DbType="BigInt NOT NULL" CanBeNull="false" /> 67 67 <Column Name="DataTypeId" Type="System.Int64" DbType="BigInt NOT NULL" CanBeNull="false" /> 68 <Column Name="BinaryDataId" Type="System.Int64" DbType="BigInt NOT NULL" CanBeNull="false" />68 <Column Name="BinaryDataId" Type="System.Int64" DbType="BigInt" CanBeNull="true" /> 69 69 <Column Name="Name" Type="System.String" DbType="NVarChar(200) NOT NULL" CanBeNull="false" /> 70 70 <Column Name="Description" Type="System.String" DbType="NVarChar(MAX)" CanBeNull="true" /> … … 83 83 <Column Name="PlatformId" Type="System.Int64" DbType="BigInt NOT NULL" CanBeNull="false" /> 84 84 <Column Name="DataTypeId" Type="System.Int64" DbType="BigInt NOT NULL" CanBeNull="false" /> 85 <Column Name="BinaryDataId" Type="System.Int64" DbType="BigInt NOT NULL" CanBeNull="false" />85 <Column Name="BinaryDataId" Type="System.Int64" DbType="BigInt" CanBeNull="true" /> 86 86 <Column Name="Name" Type="System.String" DbType="NVarChar(200) NOT NULL" CanBeNull="false" /> 87 87 <Column Name="Description" Type="System.String" DbType="NVarChar(MAX)" CanBeNull="true" /> -
branches/OKB (trunk integration)/HeuristicLab.Services.OKB.DataAccess/3.3/OKB.dbml.layout
r5478 r5534 65 65 </nodes> 66 66 </associationConnector> 67 <associationConnector edgePoints="[(7 : 2.39024983723958); (4.75 : 2.39024983723958)]" fixedFrom=" Algorithm" fixedTo="Algorithm">67 <associationConnector edgePoints="[(7 : 2.39024983723958); (4.75 : 2.39024983723958)]" fixedFrom="NotFixed" fixedTo="NotFixed"> 68 68 <AssociationMoniker Name="/OKBDataContext/DataType/DataType_Algorithm" /> 69 69 <nodes> … … 92 92 </nodes> 93 93 </associationConnector> 94 <associationConnector edgePoints="[(9 : 2.39024983723958); (11.25 : 2.39024983723958)]" fixedFrom=" Algorithm" fixedTo="Algorithm">94 <associationConnector edgePoints="[(9 : 2.39024983723958); (11.25 : 2.39024983723958)]" fixedFrom="NotFixed" fixedTo="NotFixed"> 95 95 <AssociationMoniker Name="/OKBDataContext/DataType/DataType_Problem" /> 96 96 <nodes> … … 166 166 </nodes> 167 167 </associationConnector> 168 <associationConnector edgePoints="[(7.273878302532 : 3.5112939453125); (7.273878302532 : 4)]" fixedFrom=" Caller" fixedTo="Algorithm">168 <associationConnector edgePoints="[(7.273878302532 : 3.5112939453125); (7.273878302532 : 4)]" fixedFrom="NotFixed" fixedTo="NotFixed"> 169 169 <AssociationMoniker Name="/OKBDataContext/DataType/DataType_Value" /> 170 170 <nodes> … … 206 206 </nodes> 207 207 </associationConnector> 208 <associationConnector edgePoints="[(8.68784173221247 : 3.5112939453125); (8.68784173221247 : 4)]" fixedFrom=" Caller" fixedTo="Algorithm">208 <associationConnector edgePoints="[(8.68784173221247 : 3.5112939453125); (8.68784173221247 : 4)]" fixedFrom="NotFixed" fixedTo="NotFixed"> 209 209 <AssociationMoniker Name="/OKBDataContext/DataType/DataType_CharacteristicValue" /> 210 210 <nodes> -
branches/OKB (trunk integration)/HeuristicLab.Services.OKB.DataAccess/3.3/OKB.designer.cs
r5478 r5534 1312 1312 private long _DataTypeId; 1313 1313 1314 private long_BinaryDataId;1314 private System.Nullable<long> _BinaryDataId; 1315 1315 1316 1316 private string _Name; … … 1342 1342 partial void OnDataTypeIdChanging(long value); 1343 1343 partial void OnDataTypeIdChanged(); 1344 partial void OnBinaryDataIdChanging( longvalue);1344 partial void OnBinaryDataIdChanging(System.Nullable<long> value); 1345 1345 partial void OnBinaryDataIdChanged(); 1346 1346 partial void OnNameChanging(string value); … … 1453 1453 } 1454 1454 1455 [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BinaryDataId", DbType="BigInt NOT NULL")]1456 public longBinaryDataId1455 [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BinaryDataId", DbType="BigInt")] 1456 public System.Nullable<long> BinaryDataId 1457 1457 { 1458 1458 get … … 1672 1672 else 1673 1673 { 1674 this._BinaryDataId = default( long);1674 this._BinaryDataId = default(Nullable<long>); 1675 1675 } 1676 1676 this.SendPropertyChanged("BinaryData"); … … 1738 1738 private long _DataTypeId; 1739 1739 1740 private long_BinaryDataId;1740 private System.Nullable<long> _BinaryDataId; 1741 1741 1742 1742 private string _Name; … … 1770 1770 partial void OnDataTypeIdChanging(long value); 1771 1771 partial void OnDataTypeIdChanged(); 1772 partial void OnBinaryDataIdChanging( longvalue);1772 partial void OnBinaryDataIdChanging(System.Nullable<long> value); 1773 1773 partial void OnBinaryDataIdChanged(); 1774 1774 partial void OnNameChanging(string value); … … 1882 1882 } 1883 1883 1884 [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BinaryDataId", DbType="BigInt NOT NULL")]1885 public longBinaryDataId1884 [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BinaryDataId", DbType="BigInt")] 1885 public System.Nullable<long> BinaryDataId 1886 1886 { 1887 1887 get … … 2114 2114 else 2115 2115 { 2116 this._BinaryDataId = default( long);2116 this._BinaryDataId = default(Nullable<long>); 2117 2117 } 2118 2118 this.SendPropertyChanged("BinaryData"); -
branches/OKB (trunk integration)/HeuristicLab.Services.OKB.DataAccess/3.3/Tests/HeuristicLab.Services.OKB.DataAccess-3.3.Tests.csproj
r5502 r5534 47 47 </ItemGroup> 48 48 <ItemGroup> 49 <Compile Include="DBTests.cs" />50 49 <Compile Include="Properties\AssemblyInfo.cs" /> 51 50 </ItemGroup>
Note: See TracChangeset
for help on using the changeset viewer.