我寫一個LINQ到實體:如何解決方法「包含」爲.NET 3.5不支持
string[] groups = GetGroups();
var fList = from f in _store.wcf_ServerFarm
join a in _store.ClientAccess on f.ServerFarmName equals a.AccessServerFarmName
join s in _store.Service on f.ServerFarmName equals s.ServerFarmName
where groups.Contains(s.ServerMachineName)
select new { f.ServerFarmAddress, s.ServerMachineName, s.ServiceName, s.ServiceConfig, s.ServicePath };
但是.NET 3.5不支持包含(),我不能升級它一些原因。如何弄清楚它。我嘗試使用「Any(),esql」等,不起作用。 謝謝!
相關:http://stackoverflow.com/questions/88473/how-to-do-a-where-in-values-in-linq-to-entities-3-5 –