在LINQ to SQL类,为什么属性是从外键创建EntitySet
对象,实施IEnumerable
,作为地方上的对象DataContext
是Table
其实现目标IQueryable
?
编辑:澄清一下,这是一个例子,说明了我想要了解的内容.这个例子:
ctx.Matches.Where(x => x.MatchID == 1).Single() .MatchPlayers.Max(x => x.Score);
在以下位置点击数据库两次:
ctx.MatchPlayers.Where(x => x.MatchID == 1) .Max(x => x.Score);
只运行1个查询.以下是痕迹:
exec sp_executesql N'SELECT [t0].[MatchID], [t0].[Date] FROM [dbo].[Matches] AS [t0] WHERE [t0].[MatchID] = @p0',N'@p0 int',@p0=1 go exec sp_executesql N'SELECT [t0].[MatchID], [t0].[PlayerID], [t0].[Score] FROM [dbo].[MatchPlayers] AS [t0] WHERE [t0].[MatchID] = @p0',N'@p0 int',@p0=1 go
和
exec sp_executesql N'SELECT MAX([t0].[Score]) AS [value] FROM [dbo].[MatchPlayers] AS [t0] WHERE [t0].[MatchID] = @p0',N'@p0 int',@p0=1 go
这也表明,更糟糕的是,max是在C#级别而不是在数据库中完成的.
我知道发生这种情况的原因是IQueryable
s和IEnumerable
s 之间的区别,所以为什么MatchPlayers
第一个示例中的对象不实现IQueryable
接口以获得与后一个示例相同的好处.