RelationalEntityTypeBuilderExtensions.CanSetFunction Method

Definition

Overloads

CanSetFunction(IConventionEntityTypeBuilder, MethodInfo, Boolean)

Returns a value indicating whether the function name can be set for this entity type using the specified configuration source.

CanSetFunction(IConventionEntityTypeBuilder, String, Boolean)

Returns a value indicating whether the function name can be set for this entity type using the specified configuration source.

CanSetFunction(IConventionEntityTypeBuilder, MethodInfo, Boolean)

Returns a value indicating whether the function name can be set for this entity type using the specified configuration source.

public static bool CanSetFunction (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder entityTypeBuilder, System.Reflection.MethodInfo? function, bool fromDataAnnotation = false);
static member CanSetFunction : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder * System.Reflection.MethodInfo * bool -> bool
<Extension()>
Public Function CanSetFunction (entityTypeBuilder As IConventionEntityTypeBuilder, function As MethodInfo, Optional fromDataAnnotation As Boolean = false) As Boolean

Parameters

entityTypeBuilder
IConventionEntityTypeBuilder

The builder for the entity type being configured.

function
MethodInfo

The method representing the function.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

true if the configuration can be applied.

Remarks

See Modeling entity types and relationships for more information and examples.

Applies to

CanSetFunction(IConventionEntityTypeBuilder, String, Boolean)

Returns a value indicating whether the function name can be set for this entity type using the specified configuration source.

public static bool CanSetFunction (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder entityTypeBuilder, string name, bool fromDataAnnotation = false);
public static bool CanSetFunction (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder entityTypeBuilder, string? name, bool fromDataAnnotation = false);
static member CanSetFunction : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder * string * bool -> bool
<Extension()>
Public Function CanSetFunction (entityTypeBuilder As IConventionEntityTypeBuilder, name As String, Optional fromDataAnnotation As Boolean = false) As Boolean

Parameters

entityTypeBuilder
IConventionEntityTypeBuilder

The builder for the entity type being configured.

name
String

The name of the function.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

true if the configuration can be applied.

Remarks

See Modeling entity types and relationships for more information and examples.

Applies to