C#:LINQ中的IN子句


如何使where in子句類似於SQL Server中的in子句?

 1 var results = from states in _objectdatasource.StateList()
 2               where listofcountrycodes.Contains(states.CountryCode)
 3               select new State
 4               {
 5                   StateName = states.StateName
 6               };
 7 // OR
 8 var results = _objectdatasource.StateList()
 9                   .Where(s => listofcountrycodes.Contains(s.CountryCode))
10                   .Select(s => new State { StateName = s.StateName});

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM