我有以下型号:
我需要一个特定用户的所有灯具和预测列表(如果该灯具有预测)。返回我需要的sql如下:
SELECT * FROM Fixture f
LEFT OUTER JOIN Prediction p ON f.FixtureId = p.FixtureId
WHERE p.UserID = '06E4D3E0-8365-45BF-9054-3F8534C7AD5E' OR p.UserID IS NULL
我试过了:
var query = from f in c.Fixtures
from p in c.Predictions.Where(pre => pre.UserId == new Guid("06E4D3E0-8365-45BF-9054-3F8534C7AD5E") || pre.UserId == null)
select new
{
FixtureId = f.FixtureId,
HomeScore = f.HomeTeamScore,
AwayScore = f.AwayTeamScore,
PredictionId = p.PredictionId,
HomePrediction = p.HomeTeamPrediction,
AwayPrediction = p.AwayTeamPrediction
};
但是这会产生(并给出错误的结果):
SELECT
[Extent1].[FixtureId] AS [FixtureId],
[Extent1].[HomeTeamScore] AS [HomeTeamScore],
[Extent1].[AwayTeamScore] AS [AwayTeamScore],
[Extent2].[PredictionId] AS [PredictionId],
[Extent2].[HomeTeamPrediction] AS [HomeTeamPrediction],
[Extent2].[AwayTeamPrediction] AS [AwayTeamPrediction]
FROM [dbo].[Fixture] AS [Extent1]
CROSS JOIN [dbo].[Prediction] AS [Extent2]
WHERE cast('06e4d3e0-8365-45bf-9054-3f8534c7ad5e' as uniqueidentifier) = [Extent2].[UserId]
将DefaultIfEmpty
添加到第二个'from',如:
var query = from f in c.Fixtures
from p in c.Predictions.Where(pre => pre.UserId == new Guid("06E4D3E0-8365-45BF-9054-3F8534C7AD5E") || pre.UserId == null).DefaultIfEmpty()
select new
{
FixtureId = f.FixtureId,
HomeScore = f.HomeTeamScore,
AwayScore = f.AwayTeamScore,
PredictionId = p.PredictionId,
HomePrediction = p.HomeTeamPrediction,
AwayPrediction = p.AwayTeamPrediction
};
生成(并且仍然给出错误的结果):
SELECT
[Extent1].[FixtureId] AS [FixtureId],
[Extent1].[HomeTeamScore] AS [HomeTeamScore],
[Extent1].[AwayTeamScore] AS [AwayTeamScore],
[Join1].[PredictionId] AS [PredictionId],
[Join1].[HomeTeamPrediction] AS [HomeTeamPrediction],
[Join1].[AwayTeamPrediction] AS [AwayTeamPrediction]
FROM [dbo].[Fixture] AS [Extent1]
CROSS JOIN (SELECT [Project1].[PredictionId] AS [PredictionId], [Project1].[HomeTeamPrediction] AS [HomeTeamPrediction], [Project1].[AwayTeamPrediction] AS [AwayTeamPrediction]
FROM ( SELECT 1 AS X ) AS [SingleRowTable1]
LEFT OUTER JOIN (SELECT
[Extent2].[PredictionId] AS [PredictionId],
[Extent2].[UserId] AS [UserId],
[Extent2].[HomeTeamPrediction] AS [HomeTeamPrediction],
[Extent2].[AwayTeamPrediction] AS [AwayTeamPrediction]
FROM [dbo].[Prediction] AS [Extent2]
WHERE cast('06e4d3e0-8365-45bf-9054-3f8534c7ad5e' as uniqueidentifier) = [Extent2].[UserId] ) AS [Project1] ON 1 = 1 ) AS [Join1]
使用现有的关系就像(这是我出错的地方,见下面的答案):
var query = from f in c.Fixtures
from p in c.Predictions
where c.Predictions.Any(pre => pre.UserId == new Guid("06E4D3E0-8365-45BF-9054-3F8534C7AD5E") || pre.UserId == null)
select new
{
FixtureId = f.FixtureId,
HomeScore = f.HomeTeamScore,
AwayScore = f.AwayTeamScore,
PredictionId = p.PredictionId,
HomePrediction = p.HomeTeamPrediction,
AwayPrediction = p.AwayTeamPrediction
};
生成:
SELECT
[Extent1].[FixtureId] AS [FixtureId],
[Extent1].[HomeTeamScore] AS [HomeTeamScore],
[Extent1].[AwayTeamScore] AS [AwayTeamScore],
[Extent2].[PredictionId] AS [PredictionId],
[Extent2].[HomeTeamPrediction] AS [HomeTeamPrediction],
[Extent2].[AwayTeamPrediction] AS [AwayTeamPrediction]
FROM [dbo].[Fixture] AS [Extent1]
CROSS JOIN [dbo].[Prediction] AS [Extent2]
WHERE EXISTS (SELECT
1 AS [C1]
FROM [dbo].[Prediction] AS [Extent3]
WHERE cast('06e4d3e0-8365-45bf-9054-3f8534c7ad5e' as uniqueidentifier) = [Extent3].[UserId]
)
如何生成我需要的查询?
答案 0 :(得分:5)
EF为您生成了导航属性,请继续使用它们!
而不是
var query =
from f in c.Fixtures
from p in c.Predictions
.Where(pre => pre.UserId == new Guid("06E4D3E0-8365-45BF-9054-3F8534C7AD5E")
|| pre.UserId == null)
试
var query =
from f in c.Fixtures
from p in f.Predictions
.Where(pre => pre.UserId == new Guid("06E4D3E0-8365-45BF-9054-3F8534C7AD5E")
|| pre.UserId == null)