SqlServerEntityTypeBuilderExtensions.CanSetIsMemoryOptimized Method

Definition

Returns a value indicating whether the mapped table can be configured as memory-optimized.

public static bool CanSetIsMemoryOptimized (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder entityTypeBuilder, bool? memoryOptimized, bool fromDataAnnotation = false);
static member CanSetIsMemoryOptimized : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder * Nullable<bool> * bool -> bool
<Extension()>
Public Function CanSetIsMemoryOptimized (entityTypeBuilder As IConventionEntityTypeBuilder, memoryOptimized As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false) As Boolean

Parameters

entityTypeBuilder
IConventionEntityTypeBuilder

The builder for the entity type being configured.

memoryOptimized
Nullable<Boolean>

A value indicating whether the table is memory-optimized.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

true if the mapped table can be configured as memory-optimized.

Remarks

See Using SQL Server memory-optimized tables with EF Core for more information and examples.

Applies to