Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/22/11 03:08:43 (13 years ago)
Author:
swagner
Message:

Worked on OKB (#1174)

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  
    6666      <Column Name="PlatformId" Type="System.Int64" DbType="BigInt NOT NULL" CanBeNull="false" />
    6767      <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" />
    6969      <Column Name="Name" Type="System.String" DbType="NVarChar(200) NOT NULL" CanBeNull="false" />
    7070      <Column Name="Description" Type="System.String" DbType="NVarChar(MAX)" CanBeNull="true" />
     
    8383      <Column Name="PlatformId" Type="System.Int64" DbType="BigInt NOT NULL" CanBeNull="false" />
    8484      <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" />
    8686      <Column Name="Name" Type="System.String" DbType="NVarChar(200) NOT NULL" CanBeNull="false" />
    8787      <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  
    6565      </nodes>
    6666    </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">
    6868      <AssociationMoniker Name="/OKBDataContext/DataType/DataType_Algorithm" />
    6969      <nodes>
     
    9292      </nodes>
    9393    </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">
    9595      <AssociationMoniker Name="/OKBDataContext/DataType/DataType_Problem" />
    9696      <nodes>
     
    166166      </nodes>
    167167    </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">
    169169      <AssociationMoniker Name="/OKBDataContext/DataType/DataType_Value" />
    170170      <nodes>
     
    206206      </nodes>
    207207    </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">
    209209      <AssociationMoniker Name="/OKBDataContext/DataType/DataType_CharacteristicValue" />
    210210      <nodes>
  • branches/OKB (trunk integration)/HeuristicLab.Services.OKB.DataAccess/3.3/OKB.designer.cs

    r5478 r5534  
    13121312    private long _DataTypeId;
    13131313   
    1314     private long _BinaryDataId;
     1314    private System.Nullable<long> _BinaryDataId;
    13151315   
    13161316    private string _Name;
     
    13421342    partial void OnDataTypeIdChanging(long value);
    13431343    partial void OnDataTypeIdChanged();
    1344     partial void OnBinaryDataIdChanging(long value);
     1344    partial void OnBinaryDataIdChanging(System.Nullable<long> value);
    13451345    partial void OnBinaryDataIdChanged();
    13461346    partial void OnNameChanging(string value);
     
    14531453    }
    14541454   
    1455     [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BinaryDataId", DbType="BigInt NOT NULL")]
    1456     public long BinaryDataId
     1455    [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BinaryDataId", DbType="BigInt")]
     1456    public System.Nullable<long> BinaryDataId
    14571457    {
    14581458      get
     
    16721672          else
    16731673          {
    1674             this._BinaryDataId = default(long);
     1674            this._BinaryDataId = default(Nullable<long>);
    16751675          }
    16761676          this.SendPropertyChanged("BinaryData");
     
    17381738    private long _DataTypeId;
    17391739   
    1740     private long _BinaryDataId;
     1740    private System.Nullable<long> _BinaryDataId;
    17411741   
    17421742    private string _Name;
     
    17701770    partial void OnDataTypeIdChanging(long value);
    17711771    partial void OnDataTypeIdChanged();
    1772     partial void OnBinaryDataIdChanging(long value);
     1772    partial void OnBinaryDataIdChanging(System.Nullable<long> value);
    17731773    partial void OnBinaryDataIdChanged();
    17741774    partial void OnNameChanging(string value);
     
    18821882    }
    18831883   
    1884     [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BinaryDataId", DbType="BigInt NOT NULL")]
    1885     public long BinaryDataId
     1884    [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BinaryDataId", DbType="BigInt")]
     1885    public System.Nullable<long> BinaryDataId
    18861886    {
    18871887      get
     
    21142114          else
    21152115          {
    2116             this._BinaryDataId = default(long);
     2116            this._BinaryDataId = default(Nullable<long>);
    21172117          }
    21182118          this.SendPropertyChanged("BinaryData");
  • branches/OKB (trunk integration)/HeuristicLab.Services.OKB.DataAccess/3.3/Tests/HeuristicLab.Services.OKB.DataAccess-3.3.Tests.csproj

    r5502 r5534  
    4747  </ItemGroup>
    4848  <ItemGroup>
    49     <Compile Include="DBTests.cs" />
    5049    <Compile Include="Properties\AssemblyInfo.cs" />
    5150  </ItemGroup>
Note: See TracChangeset for help on using the changeset viewer.