IConventionNavigationBuilder.EnableLazyLoading Method

Definition

Configures this navigation to be enabled for lazy-loading.

public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionNavigationBuilder? EnableLazyLoading (bool? lazyLoadingEnabled, bool fromDataAnnotation = false);
abstract member EnableLazyLoading : Nullable<bool> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionNavigationBuilder
Public Function EnableLazyLoading (lazyLoadingEnabled As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false) As IConventionNavigationBuilder

Parameters

lazyLoadingEnabled
Nullable<Boolean>

A value indicating whether the navigation should be enabled for lazy-loading.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The same builder instance if the configuration was applied, null otherwise.

Applies to