RelationalQueryTypeBuilderExtensions Class

Definition

Relational database specific extension methods for QueryTypeBuilder.

public static class RelationalQueryTypeBuilderExtensions
type RelationalQueryTypeBuilderExtensions = class
Public Module RelationalQueryTypeBuilderExtensions
Inheritance
RelationalQueryTypeBuilderExtensions

Methods

HasDiscriminator(QueryTypeBuilder)

Configures the discriminator column used to identify which query type each row in a table represents when an inheritance hierarchy is mapped to a single table in a relational database.

HasDiscriminator(QueryTypeBuilder, String, Type)

Configures the discriminator column used to identify which query type each row in a table represents when an inheritance hierarchy is mapped to a single table in a relational database.

HasDiscriminator<TDiscriminator>(QueryTypeBuilder, String)

Configures the discriminator column used to identify which query type each row in a table represents when an inheritance hierarchy is mapped to a single table in a relational database.

HasDiscriminator<TQuery,TDiscriminator>(QueryTypeBuilder<TQuery>, Expression<Func<TQuery,TDiscriminator>>)

Configures the discriminator column used to identify which query type each row in a table represents when an inheritance hierarchy is mapped to a single table in a relational database.

ToView(QueryTypeBuilder, String)

Configures the view or table that the view maps to when targeting a relational database.

ToView(QueryTypeBuilder, String, String)

Configures the view or table that the view maps to when targeting a relational database.

ToView<TQuery>(QueryTypeBuilder<TQuery>, String)

Configures the view or table that the view maps to when targeting a relational database.

ToView<TQuery>(QueryTypeBuilder<TQuery>, String, String)

Configures the view or table that the view maps to when targeting a relational database.

Applies to