生成LINQ to SQL类的错误?

时间:2011-09-21 08:53:32

标签: c# .net linq linq-to-sql

我有两张桌子:预算和顾问。预算与顾问之间存在1到0..1的关系:预算有顾问,顾问可以有预算。

Linq向Sql为Budget的Consultant属性生成的代码如下:

[global::System.Data.Linq.Mapping.AssociationAttribute(Name="Consultant_Budget", Storage="_Consultant", ThisKey="Id", OtherKey="Id", IsForeignKey=true, DeleteOnNull=true, DeleteRule="CASCADE")]
public Consultant Consultant
{
    get
    {
        return this._Consultant.Entity;
    }
    set
    {
        Consultant previousValue = this._Consultant.Entity;
        if (((previousValue != value) 
                    || (this._Consultant.HasLoadedOrAssignedValue == false)))
        {
            this.SendPropertyChanging();
            if ((previousValue != null))
            {
                this._Consultant.Entity = null;
                previousValue.Budget = null;
            }
            this._Consultant.Entity = value;
            if ((value != null))
            {
                value.Budget = this;
                *this._Id = value.Id;*
            }
            else
            {
                *this._Id = default(int);*
            }
            this.SendPropertyChanged("Consultant");
        }
    }
}

这对我来说似乎是错的:如果设置了Consultant属性,为什么代码会更改预算的ID(请参阅斜体中的行)?

顺便说一下:这些表是使用Lightswitch构建的。

1 个答案:

答案 0 :(得分:1)

由于预算取决于顾问,_Id将包含顾问的ID。当您查看数据库时,Budget表将包含具有主键约束的Id列和Consultant的外键约束引用表。