/// <summary> /// Configures the table that the entity maps to when targeting SQL Server as memory-optimized. /// </summary> /// <param name="entityTypeBuilder"> The builder for the entity type being configured. </param> /// <param name="memoryOptimized"> A value indicating whether the table is memory-optimized. </param> /// <param name="fromDataAnnotation"> Indicates whether the configuration was specified using a data annotation. </param> /// <returns> /// The same builder instance if the configuration was applied, /// <see langword="null" /> otherwise. /// </returns> public static IConventionEntityTypeBuilder?IsMemoryOptimized( this IConventionEntityTypeBuilder entityTypeBuilder, bool?memoryOptimized, bool fromDataAnnotation = false) { if (entityTypeBuilder.CanSetIsMemoryOptimized(memoryOptimized, fromDataAnnotation)) { entityTypeBuilder.Metadata.SetIsMemoryOptimized(memoryOptimized, fromDataAnnotation); return(entityTypeBuilder); } return(null); }