生成密封类

时间:2012-01-20 13:34:11

标签: c# linq-to-sql

使用linq to sql我想在数据上下文中生成一些密封的类。显然无法做到。

当我尝试扩展生成的类时,让我们通过像这样的部分来说ApplicationUser

sealed public partial class ApplicationUser
{ }

我收到编译错误(摘要)

  

'SendPropertyChanging()'是密封类'ApplicationUser'中的新虚拟成员

  

'SendPropertyChanged(string)'是密封类'ApplicationUser'中的新虚拟成员

显然是因为这些方法是protected virtual生成的。

有没有办法让linq to sql生成选定(不是全部)类密封?

1 个答案:

答案 0 :(得分:5)

您可以通过编辑设计器中的属性来生成密封类:

enter image description here