实体框架(EF)Core 2.0中的SqlFunctions
相当于什么?
我正在尝试将其转换为EF Core
private static readonly MethodInfo StringConvertMethodDouble = typeof(SqlFunctions).GetMethod("StringConvert", new Type[] { typeof(double?) });
编辑#1: 我应该指定我使用表达式树生成动态linq查询以查询数据库
由于
答案 0 :(得分:6)
EF Core表面通过EF.Functions
起作用,但在2.0中只有Like
可用:
ctx.TestEntities.Any(entity => EF.Functions.Like(entity.Name, "%foo%"))