Interface IIncludableQueryable<TEntity, TProperty>
- Namespace
- Microsoft.EntityFrameworkCore.Query
- Assembly
- Microsoft.EntityFrameworkCore.dll
Supports queryable Include/ThenInclude chaining operators.
public interface IIncludableQueryable<out TEntity, out TProperty> : IQueryable<TEntity>, IEnumerable<TEntity>, IQueryable, IEnumerable
Type Parameters
TEntity
The entity type.
TProperty
The property type.
- Inherited Members
- Extension Methods
Remarks
See Implementation of database providers and extensions and How EF Core queries work for more information and examples.