我需要使用 where 子句来排除具有减号的行。
c.Bill_Ship_To_Code是一个字符串。 我的变量是 -1。
如何创建我的 where 子句以从字符串中选择 int。
var customerModel = db.CUSTOMERS
.Where(c => c.Customer_ID == currentUser.PinCode && c.Bill_Ship_To_Code != -1);
使用 "-1"
或 - 如果它是一个变量 - num.ToString()
.两者的类型必须相同:
.Where(c => c.Customer_ID == currentUser.PinCode && c.Bill_Ship_To_Code != "-1");