Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Modeling.Database.SQLServerCompact/3.2/DataObjects/InputVariable.cs @ 2591

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

added license information (ticket #712)

File size: 2.7 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 = "InputVariable")]
30  public class InputVariable : IInputVariable {
31    public InputVariable() {
32      this.model = default(EntityRef<Model>);
33      this.variable = default(EntityRef<Variable>);
34    }
35
36    public InputVariable(Model model, Variable variable)
37      : base() {
38      this.modelId = model.Id;
39      this.variableId = variable.Id;
40    }
41
42    private int variableId;
43    [Column(Storage = "variableId", IsPrimaryKey = true)]
44    public int VariableId {
45      get { return this.variableId; }
46      private set {
47        if (variableId != value) {
48          if (variable.HasLoadedOrAssignedValue)
49            throw new ForeignKeyReferenceAlreadyHasValueException();
50          variableId = value;         
51        }
52      }
53    }
54
55    private EntityRef<Variable> variable;
56    [Association(Storage = "variable", ThisKey = "VariableId", OtherKey = "Id", IsForeignKey = true)]
57    public Variable Variable {
58      get { return variable.Entity; }
59    }
60
61    IVariable IInputVariable.Variable {
62      get { return this.Variable; }
63    }
64
65    private int modelId;
66    [Column(Storage = "modelId", IsPrimaryKey = true)]
67    public int ModelId {
68      get { return this.modelId; }
69      private set {
70        if (modelId != value) {
71          if (model.HasLoadedOrAssignedValue)
72            throw new ForeignKeyReferenceAlreadyHasValueException();
73          modelId = value;
74        }
75      }
76    }
77
78    private EntityRef<Model> model;
79    [Association(Storage = "model", ThisKey = "ModelId", OtherKey = "Id", IsForeignKey = true)]
80    public Model Model {
81      get { return model.Entity; }
82    }
83
84    IModel IInputVariable.Model {
85      get { return this.Model;}
86    }
87  }
88}
Note: See TracBrowser for help on using the repository browser.