筛选
您可以使用熟悉的 C# 逻辑 AND 和 OR 运算符来根据需要在 where 子句中应用任意数量的筛选表达式。例如,若要只返回位于“伦敦”AND 姓名为“Devon”的客户,您应编写下面的代码:
where cust.City=="London"&& cust.Name =="Devon"
若要返回位于伦敦或巴黎的客户,您应编写下面的代码:
where cust.City =="London"|| cust.City =="Paris"
本文共 298 字,大约阅读时间需要 1 分钟。
您可以使用熟悉的 C# 逻辑 AND 和 OR 运算符来根据需要在 where 子句中应用任意数量的筛选表达式。例如,若要只返回位于“伦敦”AND 姓名为“Devon”的客户,您应编写下面的代码:
where cust.City=="London"&& cust.Name =="Devon"
若要返回位于伦敦或巴黎的客户,您应编写下面的代码:
where cust.City =="London"|| cust.City =="Paris"
转载于:https://www.cnblogs.com/zhao159357222/archive/2012/02/06/2339710.html