PropertyBuilder.HasSentinel(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Configures the value that will be used to determine if the property has been set or not. If the property is set to the sentinel value, then it is considered not set. By default, the sentinel value is the CLR default value for the type of the property.
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder HasSentinel (object? sentinel);
abstract member HasSentinel : obj -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
override this.HasSentinel : obj -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
Public Overridable Function HasSentinel (sentinel As Object) As PropertyBuilder
Parameters
- sentinel
- Object
The sentinel value.
Returns
The same builder instance if the configuration was applied, null
otherwise.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework