IConventionEntityType.SetIsKeyless(Nullable<Boolean>, Boolean) Method

Definition

Sets a value indicating whether the entity type has no keys. When set to true it will only be usable for queries. null to reset to default.

public bool? SetIsKeyless (bool? keyless, bool fromDataAnnotation = false);
abstract member SetIsKeyless : Nullable<bool> * bool -> Nullable<bool>
Public Function SetIsKeyless (keyless As Nullable(Of Boolean), Optional fromDataAnnotation As Boolean = false) As Nullable(Of Boolean)

Parameters

keyless
Nullable<Boolean>

A value indicating whether the entity type to has no keys.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The new configuration value.

Applies to