Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Modeling.Database.SQLServerCompact/3.2/DataObjects/ModelData.cs @ 2382

Last change on this file since 2382 was 2382, checked in by mkommend, 15 years ago

refactored modeling database to enable the change of models (ticket #759)

File size: 2.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using System.Data.Linq;
25using System.Data.Linq.Mapping;
26using System.Text;
27
28namespace HeuristicLab.Modeling.Database.SQLServerCompact {
29  [Table(Name = "ModelData")]
30  public class ModelData {
31
32    public ModelData() {
33      this.model = default(EntityRef<Model>);
34    }
35
36    public ModelData(Model model, byte[] data)
37      : base() {
38      this.modelId = model.Id;
39      this.data = data;
40    }
41
42
43    private int modelId;
44    [Column(Storage = "modelId", IsPrimaryKey = true)]
45    public int ModelId {
46      get { return this.modelId; }
47      private set {
48        if (modelId != value) {
49          if (model.HasLoadedOrAssignedValue)
50            throw new ForeignKeyReferenceAlreadyHasValueException();
51          modelId = value;
52        }
53      }
54    }
55
56    private EntityRef<Model> model;
57    [Association(Storage = "model", ThisKey = "ModelId", OtherKey = "Id", IsForeignKey = true)]
58    public Model Model {
59      get { return model.Entity; }
60    }
61
62    private byte[] data;
63    [Column(Storage = "data", DbType = "image", CanBeNull = false, UpdateCheck = UpdateCheck.Never)]
64    public byte[] Data {
65      get { return this.data; }
66      private set { this.data = value; }
67    }
68  }
69}
Note: See TracBrowser for help on using the repository browser.