。
嗨,我有一个 dbml 文件,它开始在实体集名称的末尾添加一个 1有什么方法可以永久解决此问题吗?如果我在设计器文件中更改它,它只会在文件更新时返回。
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="Product_CompositeProduct", Storage="_CompositeProducts1", ThisKey="ProductNo", OtherKey="ParentID")]
public EntitySet<CompositeProduct> CompositeProducts1
{
get
{
return this._CompositeProducts1;
}
set
{
this._CompositeProducts1.Assign(value);
}
}
我可以更改其余代码,但我不喜欢名称中有 1。
似乎您已经拥有名为 CompositeProducts 的属性,这就是为什么它在实体集的末尾添加 1。 下次它将添加 2