我创建了一个SQL服务器存储程序, 我将它绑在下面的我阶级的财产上。
objSearchCustomerCDTO = DbContext.ExecuteStoreQuery<SearchCustomerCDTO>("exec GetSearchCustomerDetails").AsQueryable().ToList();
请注意,我仅仅使用存储程序来约束我的财产。
例如:我这一类的财产低于财产以下。
public string CustomerName {get;set;}
和存储程序返回
Select c.CustomerName as CustomerName from Customer
现在我只想要显示包含 bil
- 的 CustmerName
包含 bil
的 - 因为我使用过这个查询, 但我不知道为什么总是无效的。
var query = objSearchCustomerCDTO
.Where(c => c.CustomerName.Contains("bil")).ToList();
请让我知道,我在上述询问中做错了什么。
谢谢 谢谢