Udostępnij za pośrednictwem


SqlServerIndexBuilderExtensions.ForSqlServerInclude Metoda

Definicja

Przeciążenia

ForSqlServerInclude(IndexBuilder, String[])
Przestarzałe.

Konfiguruje indeks uwzględnia właściwości podczas określania wartości docelowej SQL Server.

ForSqlServerInclude(IConventionIndexBuilder, IReadOnlyList<String>, Boolean)
Przestarzałe.

Konfiguruje indeks uwzględnia właściwości podczas określania wartości docelowej SQL Server.

ForSqlServerInclude<TEntity>(IndexBuilder<TEntity>, Expression<Func<TEntity,Object>>)
Przestarzałe.

Konfiguruje indeks uwzględnia właściwości podczas określania wartości docelowej SQL Server.

ForSqlServerInclude(IndexBuilder, String[])

Przestroga

Use IncludeProperties

Konfiguruje indeks uwzględnia właściwości podczas określania wartości docelowej SQL Server.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder ForSqlServerInclude (this Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder indexBuilder, params string[] propertyNames);
[System.Obsolete("Use IncludeProperties")]
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder ForSqlServerInclude (this Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder indexBuilder, params string[] propertyNames);
static member ForSqlServerInclude : Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder * string[] -> Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder
[<System.Obsolete("Use IncludeProperties")>]
static member ForSqlServerInclude : Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder * string[] -> Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder
<Extension()>
Public Function ForSqlServerInclude (indexBuilder As IndexBuilder, ParamArray propertyNames As String()) As IndexBuilder

Parametry

indexBuilder
IndexBuilder

Konstruktor dla konfigurowanego indeksu.

propertyNames
String[]

Tablica nazw właściwości do użycia w klauzuli "include".

Zwraca

Konstruktor do dalszego konfigurowania indeksu.

Atrybuty

Dotyczy

ForSqlServerInclude(IConventionIndexBuilder, IReadOnlyList<String>, Boolean)

Przestroga

Use IncludeProperties

Konfiguruje indeks uwzględnia właściwości podczas określania wartości docelowej SQL Server.

[System.Obsolete("Use IncludeProperties")]
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionIndexBuilder ForSqlServerInclude (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionIndexBuilder indexBuilder, System.Collections.Generic.IReadOnlyList<string> propertyNames, bool fromDataAnnotation = false);
[<System.Obsolete("Use IncludeProperties")>]
static member ForSqlServerInclude : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionIndexBuilder * System.Collections.Generic.IReadOnlyList<string> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionIndexBuilder
<Extension()>
Public Function ForSqlServerInclude (indexBuilder As IConventionIndexBuilder, propertyNames As IReadOnlyList(Of String), Optional fromDataAnnotation As Boolean = false) As IConventionIndexBuilder

Parametry

indexBuilder
IConventionIndexBuilder

Konstruktor dla konfigurowanego indeksu.

propertyNames
IReadOnlyList<String>

Tablica nazw właściwości do użycia w klauzuli "include".

fromDataAnnotation
Boolean

Wskazuje, czy konfiguracja została określona przy użyciu adnotacji danych.

Zwraca

To samo wystąpienie konstruktora, jeśli konfiguracja została zastosowana, null w przeciwnym razie.

Atrybuty

Dotyczy

ForSqlServerInclude<TEntity>(IndexBuilder<TEntity>, Expression<Func<TEntity,Object>>)

Przestroga

Use IncludeProperties

Konfiguruje indeks uwzględnia właściwości podczas określania wartości docelowej SQL Server.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder<TEntity> ForSqlServerInclude<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder<TEntity> indexBuilder, System.Linq.Expressions.Expression<Func<TEntity,object>> includeExpression);
[System.Obsolete("Use IncludeProperties")]
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder<TEntity> ForSqlServerInclude<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder<TEntity> indexBuilder, System.Linq.Expressions.Expression<Func<TEntity,object>> includeExpression);
static member ForSqlServerInclude : Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder<'Entity> * System.Linq.Expressions.Expression<Func<'Entity, obj>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder<'Entity>
[<System.Obsolete("Use IncludeProperties")>]
static member ForSqlServerInclude : Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder<'Entity> * System.Linq.Expressions.Expression<Func<'Entity, obj>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.IndexBuilder<'Entity>
<Extension()>
Public Function ForSqlServerInclude(Of TEntity) (indexBuilder As IndexBuilder(Of TEntity), includeExpression As Expression(Of Func(Of TEntity, Object))) As IndexBuilder(Of TEntity)

Parametry typu

TEntity

Parametry

indexBuilder
IndexBuilder<TEntity>

Konstruktor dla konfigurowanego indeksu.

includeExpression
Expression<Func<TEntity,Object>>

Wyrażenie lambda reprezentujące właściwości do uwzględnienia w klauzuli "include" (blog => blog.Url).

Jeśli należy uwzględnić wiele właściwości, określ typ anonimowy, w tym właściwości (post => new { post.Title, post.BlogId }).

Zwraca

IndexBuilder<TEntity>

Konstruktor do dalszego konfigurowania indeksu.

Atrybuty

Dotyczy