我正在使用linq在.NET中工作,并且我有一些行为可以放在dbml中定义的类中(如。Load()
方法),或者在一个新的类中包含dbml类。
这个场景在应用程序中重复了很多次,我想知道是否有针对这种情况的最佳实践。
实施例
//Adds methods to the Contact class created in the dbml
public partial class Contact
{
public Contact Load(int Id)
{
//Select and return a loaded Contact Object
}
}
//or
public class ContactWrapper
{
public Contact Load(int Id)
{
//Select and return a loaded Contact Object
}
}
//or some other way that I didn't realize
答案 0 :(得分:3)
我会创建另一个类部分,就像你的例子中一样。这是扩展生成的类的常用模式。