最小起订量查询永不返回

发布于 2024-08-03 01:16:48 字数 534 浏览 2 评论 0原文

我不确定我做错了什么,但是在测试中运行它时,这行代码永远不会返回(似乎导致失控进程):

var discountMemberCustomer = (from customer in Mocks.Query<Customer>()
    where customer.IsDiscountMember &&
        customer.OrderCount == 13 &&
        customer.LifetimeCustomerValue == 5555m
        select customer).First();

据我所知,我正在遵循示例: http://www.clariusconsulting.net/博客/kzu/archive/2009/08/13/164978.aspx

I'm not sure what i'm doing wrong, but this line of code is never returning (seems to result in a run-away process) when running it in a test:

var discountMemberCustomer = (from customer in Mocks.Query<Customer>()
    where customer.IsDiscountMember &&
        customer.OrderCount == 13 &&
        customer.LifetimeCustomerValue == 5555m
        select customer).First();

As far as I can tell, I'm following the examples: http://www.clariusconsulting.net/blogs/kzu/archive/2009/08/13/164978.aspx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

我们只是彼此的过ke 2024-08-10 01:16:48

尝试“设置”IsDiscountMember

...
where customer.IsDiscountMember == true &&
...

Try "setting" IsDiscountMember:

...
where customer.IsDiscountMember == true &&
...
¢好甜 2024-08-10 01:16:48

哇,这真是一个好收获!
你能将其报告为谷歌代码中的问题吗?

Wow, that's a good catch!
Can you report it as an issue in google code??

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