SqlServerModelBuilderExtensions.HasPerformanceLevelSql Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
HasPerformanceLevelSql(ModelBuilder, String) |
Configura il livello di prestazioni (SERVICE_OBJECTIVE) per Azure SQL Database come espressione SQL. |
HasPerformanceLevelSql(IConventionModelBuilder, String, Boolean) |
Tenta di configurare il livello di prestazioni (SERVICE_OBJECTIVE) per Azure SQL Database. |
HasPerformanceLevelSql(ModelBuilder, String)
Configura il livello di prestazioni (SERVICE_OBJECTIVE) per Azure SQL Database come espressione SQL.
public static Microsoft.EntityFrameworkCore.ModelBuilder HasPerformanceLevelSql (this Microsoft.EntityFrameworkCore.ModelBuilder modelBuilder, string performanceLevel);
static member HasPerformanceLevelSql : Microsoft.EntityFrameworkCore.ModelBuilder * string -> Microsoft.EntityFrameworkCore.ModelBuilder
<Extension()>
Public Function HasPerformanceLevelSql (modelBuilder As ModelBuilder, performanceLevel As String) As ModelBuilder
Parametri
- modelBuilder
- ModelBuilder
Generatore del modello.
- performanceLevel
- String
Espressione per il livello di prestazioni del database.
Restituisce
Stessa istanza del generatore in modo che più chiamate possano essere concatenati.
Commenti
Per i valori supportati, vedere Azure SQL Documentazione del database.
Per altre informazioni ed esempi, vedere Modellazione di tipi e relazioni di entitàe Accesso a SQL Server e Azure SQL database con EF Core.
Si applica a
HasPerformanceLevelSql(IConventionModelBuilder, String, Boolean)
Tenta di configurare il livello di prestazioni (SERVICE_OBJECTIVE) per Azure SQL Database.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionModelBuilder HasPerformanceLevelSql (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionModelBuilder modelBuilder, string performanceLevel, bool fromDataAnnotation = false);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionModelBuilder? HasPerformanceLevelSql (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionModelBuilder modelBuilder, string? performanceLevel, bool fromDataAnnotation = false);
static member HasPerformanceLevelSql : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionModelBuilder * string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionModelBuilder
<Extension()>
Public Function HasPerformanceLevelSql (modelBuilder As IConventionModelBuilder, performanceLevel As String, Optional fromDataAnnotation As Boolean = false) As IConventionModelBuilder
Parametri
- modelBuilder
- IConventionModelBuilder
Generatore del modello.
- performanceLevel
- String
Espressione per il livello di prestazioni del database.
- fromDataAnnotation
- Boolean
Indica se la configurazione è stata specificata utilizzando un'annotazione dati.
Restituisce
Stessa istanza del generatore se la configurazione è stata applicata; in caso contrario, null
.
Commenti
Per i valori supportati, vedere Azure SQL Documentazione del database.
Per altre informazioni ed esempi, vedere Modellazione di tipi e relazioni di entitàe Accesso a SQL Server e Azure SQL database con EF Core.