Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Persistence Test/HeuristicLab.Modeling.Database.SQLServerCompact/3.2/DataObjects/ModelData.cs @ 2491

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

added possibility to reload specific models and added readonly connection to HeuristicLab.Modeling (ticket #792)

File size: 2.2 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      if (model.Id == -1)
39        this.model.Entity = model;
40      else
41        this.modelId = model.Id;
42      this.data = data;
43    }
44
45
46    private int modelId;
47    [Column(Storage = "modelId", IsPrimaryKey = true)]
48    public int ModelId {
49      get { return this.modelId; }
50      private set {
51        if (modelId != value) {
52          if (model.HasLoadedOrAssignedValue)
53            throw new ForeignKeyReferenceAlreadyHasValueException();
54          modelId = value;
55        }
56      }
57    }
58
59    private EntityRef<Model> model;
60    [Association(Storage = "model", ThisKey = "ModelId", OtherKey = "Id", IsForeignKey = true)]
61    public Model Model {
62      get { return model.Entity; }
63    }
64
65    private byte[] data;
66    [Column(Storage = "data", DbType = "image", CanBeNull = false, UpdateCheck = UpdateCheck.Never)]
67    public byte[] Data {
68      get { return this.data; }
69      private set { this.data = value; }
70    }
71  }
72}
Note: See TracBrowser for help on using the repository browser.