生成LINQ to SQL类的错误
本文关键字:错误 SQL LINQ to 生成 | 更新日期: 2023-09-27 18:09:07
我有两个表:预算和顾问。从1到0…1预算和顾问的关系:预算有一个顾问,顾问可以有一个预算。
由Linq to Sql为预算的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");
}
}
}
这对我来说似乎是错误的:如果设置了顾问属性,为什么代码会更改预算的ID(见斜体行)?
顺便说一下:这些表是用Lightswitch创建的。
因为Budget取决于顾问,_Id将包含顾问的ID。当您查看数据库时,预算表将包含Id列,其中包含顾问的主键约束和外键约束引用表。