EntityFrameworkQueryableExtensions.IgnoreAutoIncludes<TEntity> 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定目前的 Entity Framework LINQ 查詢不應套用任何模型層級積極式載入導覽。
public static System.Linq.IQueryable<TEntity> IgnoreAutoIncludes<TEntity> (this System.Linq.IQueryable<TEntity> source) where TEntity : class;
static member IgnoreAutoIncludes : System.Linq.IQueryable<'Entity (requires 'Entity : null)> -> System.Linq.IQueryable<'Entity (requires 'Entity : null)> (requires 'Entity : null)
<Extension()>
Public Function IgnoreAutoIncludes(Of TEntity As Class) (source As IQueryable(Of TEntity)) As IQueryable(Of TEntity)
類型參數
- TEntity
正在查詢的實體類型。
參數
- source
- IQueryable<TEntity>
來源查詢。
傳回
IQueryable<TEntity>
不會套用任何模型層級積極式載入導覽的新查詢。
備註
如需詳細資訊和範例,請參閱 載入相關實體 。