[2229] | 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 |
|
---|
| 22 | using System;
|
---|
[2217] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Data.Linq;
|
---|
| 25 | using System.Data.Linq.Mapping;
|
---|
| 26 | using System.Text;
|
---|
| 27 |
|
---|
| 28 | namespace 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() {
|
---|
[2451] | 38 | if (model.Id == -1)
|
---|
| 39 | this.model.Entity = model;
|
---|
| 40 | else
|
---|
| 41 | this.modelId = model.Id;
|
---|
[2217] | 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;
|
---|
[2382] | 66 | [Column(Storage = "data", DbType = "image", CanBeNull = false, UpdateCheck = UpdateCheck.Never)]
|
---|
[2217] | 67 | public byte[] Data {
|
---|
| 68 | get { return this.data; }
|
---|
| 69 | private set { this.data = value; }
|
---|
| 70 | }
|
---|
| 71 | }
|
---|
| 72 | }
|
---|