RuntimeForeignKey.IForeignKey.GetDependentKeyValueFactory Method

Definition

Overloads

IForeignKey.GetDependentKeyValueFactory()

Creates a factory for key values based on the foreign key values taken from various forms of entity data.

This method is typically used by database providers (and other extensions). It is generally not used in application code.

IForeignKey.GetDependentKeyValueFactory<TKey>()

Creates a factory for key values based on the foreign key values taken from various forms of entity data.

This method is typically used by database providers (and other extensions). It is generally not used in application code.

IForeignKey.GetDependentKeyValueFactory()

Creates a factory for key values based on the foreign key values taken from various forms of entity data.

This method is typically used by database providers (and other extensions). It is generally not used in application code.

[System.Diagnostics.DebuggerStepThrough]
Microsoft.EntityFrameworkCore.ChangeTracking.IDependentKeyValueFactory IForeignKey.GetDependentKeyValueFactory ();
[<System.Diagnostics.DebuggerStepThrough>]
abstract member Microsoft.EntityFrameworkCore.Metadata.IForeignKey.GetDependentKeyValueFactory : unit -> Microsoft.EntityFrameworkCore.ChangeTracking.IDependentKeyValueFactory
override this.Microsoft.EntityFrameworkCore.Metadata.IForeignKey.GetDependentKeyValueFactory : unit -> Microsoft.EntityFrameworkCore.ChangeTracking.IDependentKeyValueFactory
Function GetDependentKeyValueFactory () As IDependentKeyValueFactory Implements IForeignKey.GetDependentKeyValueFactory

Returns

The factory.

Implements

Attributes

Applies to

IForeignKey.GetDependentKeyValueFactory<TKey>()

Creates a factory for key values based on the foreign key values taken from various forms of entity data.

This method is typically used by database providers (and other extensions). It is generally not used in application code.

[System.Diagnostics.DebuggerStepThrough]
Microsoft.EntityFrameworkCore.ChangeTracking.IDependentKeyValueFactory<TKey>? IForeignKey.GetDependentKeyValueFactory<TKey> ();
[System.Diagnostics.DebuggerStepThrough]
Microsoft.EntityFrameworkCore.ChangeTracking.IDependentKeyValueFactory<TKey> IForeignKey.GetDependentKeyValueFactory<TKey> ();
[<System.Diagnostics.DebuggerStepThrough>]
abstract member Microsoft.EntityFrameworkCore.Metadata.IForeignKey.GetDependentKeyValueFactory : unit -> Microsoft.EntityFrameworkCore.ChangeTracking.IDependentKeyValueFactory<'Key>
override this.Microsoft.EntityFrameworkCore.Metadata.IForeignKey.GetDependentKeyValueFactory : unit -> Microsoft.EntityFrameworkCore.ChangeTracking.IDependentKeyValueFactory<'Key>
Function GetDependentKeyValueFactory(Of TKey) () As IDependentKeyValueFactory(Of TKey) Implements IForeignKey.GetDependentKeyValueFactory

Type Parameters

TKey

The type of key instances.

Returns

The factory.

Implements

Attributes

Applies to