如何使用 LINQ 查询根据用户名表检索客户端?
问问题
65 次
2 回答
1
搜索具有所需用户名的用户并获取关联的客户端。
Dim username = "Bob"
Dim clients =
From user In db.App_Users
Where user.Username = username
Select user.Dim_Client
于 2013-04-11T15:33:54.583 回答
0
要根据用户名获取客户端,这样的事情应该可以工作。
dim client = ( _
From client In Dim_Client
Where client.App_Users.Any(Function(user) user.Username = "foo")
Select client).Single
于 2013-04-11T15:29:39.460 回答