本文介绍了如何实现SQL"在"在实体框架4.0的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何实现以下实体框架中的SQL查询。
SELECT * FROM用户WHERE在用户ID(1,2,3,4)
。
我试图做
VAR用户E在= context.Users哪里e.UserId在(用户ID列表)
由于
Ashwani
解决方案
VAR用户E在context.Users =其中idList.Contains(e.UserId )
How to implement following query of SQL in entity framework.SELECT * FROM Users WHERE UserID in (1,2,3,4)
.
I am trying to do
var users = from e in context.Users where e.UserId in (list of user ids)
ThanksAshwani
解决方案
var users = from e in context.Users where idList.Contains(e.UserId)
这篇关于如何实现SQL"在"在实体框架4.0的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!