我想知道如何将下面列出的 SQL 查询转换为 VB 中的 LINQ 查询。
SELECT FacilityID
FROM tblFacilityProjects
WHERE FreedomEnabled = True and ProjectID in (840,841,842)
我想知道如何将下面列出的 SQL 查询转换为 VB 中的 LINQ 查询。
SELECT FacilityID
FROM tblFacilityProjects
WHERE FreedomEnabled = True and ProjectID in (840,841,842)
我认为应该这样做:
Dim projectIds = New Integer() {840, 841, 842}
Dim result = From proj In db.tblFacilityProjects _
Where proj.FreedomEnabled = True AndAlso _
projectIds.Contains(proj.ProjectID) _
Select FacilityID
SQL 中的 IN 查询
SELECT [Id], [UserId]
FROM [Tablename]
WHERE [UserId] IN (2, 3)
LINQ 中的 IN 查询
利用Contains
VB的功能。
Dim coll As Integer() = {2, 3}
Dim user = From u In tablename Where coll.Contains(u.UserId.Value) New
From {
u.id, u.userid
}
http://www.c-sharpcorner.com/blogs/4479/sql-in-and-not-in-clause-in-linq-using-vb-net.aspx
创建项目 ID 列表
Dim list As New List(Of Integer)
list.Add(840)
list.Add(841)
list.Add(842)
现在你必须在 LINQ 中使用它。
dim facilityId = from fp in tblFacilityProjects
where FreedomEnabled == true
where list.Contains(ProjectID)
select new
{
FacilityID=fp.FacilityID
}
您可能需要对 VB.net 进行一些调整。