Table of Contents

Class InvalidIncludePathEventData

Namespace
Microsoft.EntityFrameworkCore.Diagnostics
Assembly
Microsoft.EntityFrameworkCore.dll

A DiagnosticSource event payload class for events that have invalid include path information.

public class InvalidIncludePathEventData : EventData
Inheritance
InvalidIncludePathEventData
Inherited Members

Constructors

InvalidIncludePathEventData(EventDefinitionBase, Func<EventDefinitionBase, EventData, string>, string, string)

Constructs the event payload.

public InvalidIncludePathEventData(EventDefinitionBase eventDefinition, Func<EventDefinitionBase, EventData, string> messageGenerator, string navigationChain, string navigationName)

Parameters

eventDefinition EventDefinitionBase

The event definition.

messageGenerator Func<EventDefinitionBase, EventData, string>

A delegate that generates a log message for this event.

navigationChain string

Navigation chain included to this point.

navigationName string

The name of the invalid navigation.

Properties

NavigationChain

Navigation chain included to this point.

public virtual string NavigationChain { get; }

Property Value

string

NavigationName

The name of the invalid navigation.

public virtual string NavigationName { get; }

Property Value

string