我尝试使用Google搜索字符串“c#ef objectset extension methods”,但我想我在这里使用了错误的术语,因为我找不到任何相关内容。
我想知道的是如何添加我可以在数据库上下文中使用的自定义扩展方法:
context.TABLE.MyMethod(...
我认为有很多SO线程覆盖了这个,但我找不到它们。
答案 0 :(得分:1)
public static class YourExtensions
{
public static void MyMethod<T>(this DbSet<T> table)
where T: class // this constraint is required because DbSet<T> have it
{
// code here
}
}
以下是有关Extension Methods
的MSDN文章