我目前在使用 LINQ->Entites w/Entity Framework v 4.2 和 T4 生成的对象上下文时遇到问题。我相对了解在对数据库执行之前如何将 LINQ 查询转换为存储表达式,但我绝不是专家。据我了解,使用的 .NET 函数将转换为 T-SQL 中的等效函数,而那些没有等效函数(例如)的函数将在运行时String.Format()
抛出 a 。System.NotSupportedException
在我的动态 LINQ 查询中,我DateTime.Now.AddMinutes()
用来过滤掉我的结果集:
public void ExecuteSearch()
{
var timeElapsedTresholdInMinutes = Convert.ToInt32( ConfigurationManager.AppSettings.Get("TimeElapsedThresholdInMinutes") );
var resultSet = ( from entity in _dbContext.EntityCollection
where /*non-date-related where clause stuff*/
&&
entity.DateAdded <= DateTime.Now.AddMinutes(-1 * timeElapsedThresholdInMinutes)
select entity);
/* do something with resultSet */
}
在运行时,我得到System.NotSupportedException: LINQ to Entities does not recognize the method DateTime.Now.AddMinutes() method and this method cannot be translated into a store expression.
例如,我的 timeElapsedThreshold 在评估后的值为 -30。有谁知道为什么这不会映射到DATEADD(MINUTE,-30,GETDATE());
?我在这里缺少什么吗?
当然,我可以把我的代码变成:
public void ExecuteSearch()
{
var maxDateTimeThreshold = DateTime.Now.AddMinutes( -1 * Convert.ToInt32(ConfigurationManager.AppSettings.Get("TimeElapsedThresholdInMinutes"));
var resultSet = ( from entity in _dbContext.EntityCollection
where /*non-date-related where clause stuff*/
&&
entity.DateAdded <= maxDateTimeThreshold
select entity);
}
并克服了我的代码破坏问题,但我真的很想了解为什么 LINQ->Entities 将其视为DateTime.Now.AddMinutes()
没有 T-SQL 等效项的 .NET 方法。非常感谢任何帮助/反馈!