4

我想知道如何将下面列出的 SQL 查询转换为 VB 中的 LINQ 查询。

SELECT FacilityID 
FROM tblFacilityProjects 
WHERE FreedomEnabled = True and ProjectID in (840,841,842)
4

3 回答 3

4

我认为应该这样做:

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
于 2012-06-28T21:50:19.543 回答
0

SQL 中的 IN 查询

SELECT [Id], [UserId]
FROM [Tablename]
WHERE [UserId] IN (2, 3)

LINQ 中的 IN 查询

利用ContainsVB的功能。

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

于 2012-06-28T21:48:01.667 回答
0

创建项目 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 进行一些调整。

于 2012-06-28T21:53:18.170 回答