我想在生成代码中生成属性别名。
partial class Purchase
{
public User Customer
{
get
{
return this.User;
}
set
{
this.User = value;
}
}
}
我想知道 C# 中是否有其它方法定义别名 。 < code> Purchase 类是由 Linq- to- SQL 生成的