我正在使用.NET4.5和VS2013,我有dynamic
从数据库获取结果的查询。
dynamic topAgents = this._dataContext.Sql(
"select t.create_user_id as \"User\", sum(t.netamount) as \"Amount\" from transactiondetail t where t.update_date > sysdate -7 group by t.create_user_id")
.QueryMany<dynamic>();
以下语句由于编译错误Cannot use a lambda expression as an argument to a dynamically dispatched operation without first casting it to a delegate or expression tree type
而失败,甚至没有允许我运行它
topAgents.ToList().Select(agent => new
{
User = agent.User != null ? string.Format("{0}", agent.User).Replace("CORPNTGB\\", "") : null,
Amount = agent.Amount
});
而这与foreach
作品很好。
var data = new List<List<object>>();
foreach (dynamic agent in topAgents)
{
data.Add(new List<object>
{
agent.User != null ? string.Format("{0}", agent.User).Replace("CORPNTGB\\", "") : null,
agent.Amount
});
}
在我看来,topAgents.ToList()
它们可以被解释为等效的,是否是因为我明确指出var data = new List<List<object>>();
编译器允许第二条语句?
为什么编译器不允许LINQ选择,但允许每个选择?
topAgents
必须dynamic
?如果您使用它,是否有效var
?