EF Entity.Id是否导致联接?

时间:2018-07-17 16:24:43

标签: sql performance entity-framework

给出以下两个表,其中FooTable大约有600万行并在计数:

[FooTable] (~6million records) [BarTable] (~500k records) +-------+-------+--------+ +-------+----------+ | FooId | Value | Bar_Id | | BarId | SubValue | +-------+-------+--------+ +-------+----------+

编辑:实体框架v6.2.0

像下面的Linq查询会导致内部联接吗?以下内容是否存在潜在的性能问题?

foo => foo.Bar.Id >= 0

如果是这样,我如何确保这样的SQL查询:

SELECT * FROM [FooTable] WHERE [FooTable].[Bar_Id] >= 0;

0 个答案:

没有答案