使用 SimpleRepository Find 时,Lambda 参数不在范围内

发布于 2024-07-30 09:00:21 字数 446 浏览 4 评论 0原文

我有一个简单的小方法,尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

絕版丫頭 2024-08-06 09:00:21

看起来这是一个基于 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文