Freigeben über


ReferenceNavigationBuilder.WithManyBuilder Method

Definition

Overloads

Name Description
WithManyBuilder(MemberInfo)

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

WithManyBuilder(PropertyInfo)

This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases.

WithManyBuilder(String)

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

WithManyBuilder(MemberInfo)

Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
protected virtual Microsoft.EntityFrameworkCore.Metadata.Internal.InternalForeignKeyBuilder WithManyBuilder(System.Reflection.MemberInfo? navigationMemberInfo);
[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
protected virtual Microsoft.EntityFrameworkCore.Metadata.Internal.InternalRelationshipBuilder WithManyBuilder(System.Reflection.MemberInfo navigationMemberInfo);
[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
protected virtual Microsoft.EntityFrameworkCore.Metadata.Internal.InternalForeignKeyBuilder WithManyBuilder(System.Reflection.MemberInfo navigationMemberInfo);
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
abstract member WithManyBuilder : System.Reflection.MemberInfo -> Microsoft.EntityFrameworkCore.Metadata.Internal.InternalForeignKeyBuilder
override this.WithManyBuilder : System.Reflection.MemberInfo -> Microsoft.EntityFrameworkCore.Metadata.Internal.InternalForeignKeyBuilder
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
abstract member WithManyBuilder : System.Reflection.MemberInfo -> Microsoft.EntityFrameworkCore.Metadata.Internal.InternalRelationshipBuilder
override this.WithManyBuilder : System.Reflection.MemberInfo -> Microsoft.EntityFrameworkCore.Metadata.Internal.InternalRelationshipBuilder
Protected Overridable Function WithManyBuilder (navigationMemberInfo As MemberInfo) As InternalForeignKeyBuilder
Protected Overridable Function WithManyBuilder (navigationMemberInfo As MemberInfo) As InternalRelationshipBuilder

Parameters

navigationMemberInfo
MemberInfo

Returns

Microsoft.EntityFrameworkCore.Metadata.Internal.InternalForeignKeyBuilder
Microsoft.EntityFrameworkCore.Metadata.Internal.InternalRelationshipBuilder
Attributes

Applies to

WithManyBuilder(PropertyInfo)

Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs

This API supports the Entity Framework Core infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases.

protected virtual Microsoft.EntityFrameworkCore.Metadata.Internal.InternalRelationshipBuilder WithManyBuilder(System.Reflection.PropertyInfo navigationProperty);
abstract member WithManyBuilder : System.Reflection.PropertyInfo -> Microsoft.EntityFrameworkCore.Metadata.Internal.InternalRelationshipBuilder
override this.WithManyBuilder : System.Reflection.PropertyInfo -> Microsoft.EntityFrameworkCore.Metadata.Internal.InternalRelationshipBuilder
Protected Overridable Function WithManyBuilder (navigationProperty As PropertyInfo) As InternalRelationshipBuilder

Parameters

navigationProperty
PropertyInfo

The collection navigation property on the other end of this relationship. If null, there is no navigation property on the other end of the relationship.

Returns

Microsoft.EntityFrameworkCore.Metadata.Internal.InternalRelationshipBuilder

The internal builder to further configure the relationship.

Applies to

WithManyBuilder(String)

Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs
Source:
ReferenceNavigationBuilder.cs

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

protected virtual Microsoft.EntityFrameworkCore.Metadata.Internal.InternalRelationshipBuilder WithManyBuilder(string navigationName);
[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
protected virtual Microsoft.EntityFrameworkCore.Metadata.Internal.InternalForeignKeyBuilder WithManyBuilder(string? navigationName);
[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
protected virtual Microsoft.EntityFrameworkCore.Metadata.Internal.InternalRelationshipBuilder WithManyBuilder(string navigationName);
[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
protected virtual Microsoft.EntityFrameworkCore.Metadata.Internal.InternalForeignKeyBuilder WithManyBuilder(string navigationName);
abstract member WithManyBuilder : string -> Microsoft.EntityFrameworkCore.Metadata.Internal.InternalRelationshipBuilder
override this.WithManyBuilder : string -> Microsoft.EntityFrameworkCore.Metadata.Internal.InternalRelationshipBuilder
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
abstract member WithManyBuilder : string -> Microsoft.EntityFrameworkCore.Metadata.Internal.InternalForeignKeyBuilder
override this.WithManyBuilder : string -> Microsoft.EntityFrameworkCore.Metadata.Internal.InternalForeignKeyBuilder
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
abstract member WithManyBuilder : string -> Microsoft.EntityFrameworkCore.Metadata.Internal.InternalRelationshipBuilder
override this.WithManyBuilder : string -> Microsoft.EntityFrameworkCore.Metadata.Internal.InternalRelationshipBuilder
Protected Overridable Function WithManyBuilder (navigationName As String) As InternalRelationshipBuilder
Protected Overridable Function WithManyBuilder (navigationName As String) As InternalForeignKeyBuilder

Parameters

navigationName
String

The name of the collection navigation property on the other end of this relationship. If null, there is no navigation property on the other end of the relationship.

Returns

Microsoft.EntityFrameworkCore.Metadata.Internal.InternalRelationshipBuilder
Microsoft.EntityFrameworkCore.Metadata.Internal.InternalForeignKeyBuilder

The internal builder to further configure the relationship.

Attributes

Applies to