Share via


InMemoryDbContextOptionsBuilder.EnableNullChecks(Boolean) Method

Definition

Enables nullability check for all properties across all entities within the in-memory database.

public virtual Microsoft.EntityFrameworkCore.Infrastructure.InMemoryDbContextOptionsBuilder EnableNullChecks (bool nullChecksEnabled = true);
abstract member EnableNullChecks : bool -> Microsoft.EntityFrameworkCore.Infrastructure.InMemoryDbContextOptionsBuilder
override this.EnableNullChecks : bool -> Microsoft.EntityFrameworkCore.Infrastructure.InMemoryDbContextOptionsBuilder
Public Overridable Function EnableNullChecks (Optional nullChecksEnabled As Boolean = true) As InMemoryDbContextOptionsBuilder

Parameters

nullChecksEnabled
Boolean

If true, then nullability check is enforced.

Returns

The same builder instance so that multiple calls can be chained.

Remarks

See Using DbContextOptions, and The EF Core in-memory database provider for more information and examples.

Applies to