SqlFunction 包装器
我想在我的解决方案中不同项目的许多地方使用 SqlFunctions.StringConvert()
。
我不希望每个项目都引用 system.data.entity
因此我决定在我的 Common
项目中放置一个包装器(所有其他项目都引用 Common )。
我怎样才能写这样的包装器?如果我这样做:
public static class SqlUtils
{
public static Func<decimal?, string> StringConvert()
{
return x => SqlFunctions.StringConvert(x);
}
public static Func<double?, string> StringConvert()
{
return x => SqlFunctions.StringConvert(x);
}
}
那么我不能像这样使用它:
query.Where(x => SqlUtils.StringConvert((decimal)x.SerialNumber).Contains(serialNumber));
因为实体框架不知道方法 SqlUtils.StringConvert。
有什么想法如何去做吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您希望 EF 能够将其全部转换为 SQL,则需要做更多工作,请参阅:http://blogs.microsoft.co.il/blogs/gilf/archive/2010/01/01/defining-custom-functions-in-entity-framework.aspx
If you want EF to be able to translate it all down to SQL, you have to more work, see: http://blogs.microsoft.co.il/blogs/gilf/archive/2010/01/01/defining-custom-functions-in-entity-framework.aspx
你可以像下面这样包装函数,但我认为这没有意义:
you can wrap the functions like as follows, but I don't think it meaningful: