Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/31/09 12:11:41 (15 years ago)
Author:
mkommend
Message:

first part of performance improvements (ticket #712)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Modeling Database Backend/sources/HeuristicLab.Modeling.Database.SQLServerCompact/3.2/DataObjects/Model.cs

    r2203 r2217  
    1414    }
    1515
    16     public Model(Variable targetVariable, Algorithm algorithm, byte[] data)
     16    public Model(Variable targetVariable, Algorithm algorithm)
    1717      : this() {
    1818      this.targetVariableId = targetVariable.Id;
    1919      this.algorithmId = algorithm.Id;
    20       this.Data = data;
    2120    }
    2221
     
    2625      get { return this.id; }
    2726      private set { this.id = value; }
    28     }
    29 
    30     private byte[] data;
    31     [Column(Storage = "data", DbType = "image", CanBeNull = false)]
    32     public byte[] Data {
    33       get { return this.data; }
    34       set { this.data = value; }
    3527    }
    3628
Note: See TracChangeset for help on using the changeset viewer.