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