#region License Information
/* HeuristicLab
* Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using System.Data.Linq;
using System.Data.Linq.Mapping;
using System.Text;
namespace HeuristicLab.Modeling.Database.SQLServerCompact {
[Table(Name = "ModelMetaData")]
public class ModelMetaData : IModelMetaData {
public ModelMetaData() {
this.model = default(EntityRef);
this.metadata = default(EntityRef);
}
public ModelMetaData(Model model, MetaData metadata, double value)
: this() {
this.modelId = model.Id;
this.metaDataId = metadata.Id;
this.value = value;
}
private double value;
[Column(Storage = "value", CanBeNull = false)]
public double Value {
get { return this.value; }
set { this.value = value; }
}
private int modelId;
[Column(Storage = "modelId", IsPrimaryKey = true, CanBeNull = false)]
public int ModelId {
get { return this.modelId; }
private set {
if (modelId != value) {
if (model.HasLoadedOrAssignedValue)
throw new ForeignKeyReferenceAlreadyHasValueException();
}
modelId = value;
}
}
private EntityRef model;
[Association(Storage = "model", ThisKey = "ModelId", OtherKey = "Id", IsForeignKey = true)]
public Model Model {
get { return this.model.Entity; }
}
IModel IModelMetaData.Model {
get { return this.Model; }
}
private int metaDataId;
[Column(Storage = "metaDataId", IsPrimaryKey = true, CanBeNull = false)]
public int MetaDataId {
get { return this.metaDataId; }
private set {
if (metaDataId != value) {
if (metadata.HasLoadedOrAssignedValue)
throw new ForeignKeyReferenceAlreadyHasValueException();
}
modelId = value;
}
}
private EntityRef metadata;
[Association(Storage = "metadata", ThisKey = "MetaDataId", OtherKey = "Id", IsForeignKey = true)]
public MetaData MetaData {
get { return this.metadata.Entity; }
}
IMetaData IModelMetaData.MetaData {
get { return this.MetaData; }
}
}
}