Table of Contents

Interface IMethodCallCodeFragment

Namespace
Microsoft.EntityFrameworkCore.Design
Assembly
Microsoft.EntityFrameworkCore.dll

Represents a call to a method.

public interface IMethodCallCodeFragment

Properties

Arguments

Gets the method call's arguments.

IEnumerable<object?> Arguments { get; }

Property Value

IEnumerable<object>

The method call's arguments.

ChainedCall

Gets the next method call to chain after this.

IMethodCallCodeFragment? ChainedCall { get; }

Property Value

IMethodCallCodeFragment

The next method call.

DeclaringType

Gets the name of the method's declaring type.

string? DeclaringType { get; }

Property Value

string

The declaring type's name.

Method

Gets the method's name.

string Method { get; }

Property Value

string

The method's name.

TypeArguments

Gets the method call's generic type arguments.

IEnumerable<string> TypeArguments { get; }

Property Value

IEnumerable<string>

The type arguments.