使用 SimpleRepository Find 时,Lambda 参数不在范围内
我有一个简单的小方法,尝试使用 SubSonic 3.0.0.3 中的 SimpleRepositry Find 方法。 当我拨打电话时,我收到一个无效操作异常“Lambda 参数不在范围内”,这给我下午的编码增添了一丝悲伤。
public override IEnumerable<ICustomer> FindCustomers(string searchTerm)
{
return Repos.Find<Customer>(cust => cust.FirstNames.StartsWith(searchTerm)).ToArray();
}
现在,鉴于 SubSonic 到目前为止有多么有趣,我不会不战而屈人之兵,那么有人有什么建议吗? 我怀疑这只是一个错误,但考虑到我只使用 SS 几天,我没有足够的经验来做出这样的决定。
I have this simple little method that is trying to use the SimpleRepositry Find method in SubSonic 3.0.0.3. When I make the call I get a invalid operation exception "Lambda Parameter not in scope", which added a touch of sadness to my coding afternoon.
public override IEnumerable<ICustomer> FindCustomers(string searchTerm)
{
return Repos.Find<Customer>(cust => cust.FirstNames.StartsWith(searchTerm)).ToArray();
}
Now, given how much fun SubSonic has been so far, I'm not going to give up without a fight, so does anybody out there have any advice? I suspect that this is just a bug, but given that I've only been using SS a few days I'm not experienced enough to make that call.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来这是一个基于 Rob 对这个问题的回答的错误:
使用 SimpleRepository 的 Single 方法出现“Lambda 参数不在范围内”异常
It looks like it's a bug based on Rob's answer to this question:
"Lambda Parameter not in scope" exception using SimpleRepository's Single method