ProjectionMember Class

Definition

A class representing a chain of CLR members to bind. Usually generated from successive Select calls in the query.

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

[System.Diagnostics.DebuggerDisplay("{ToString(), nq}")]
public class ProjectionMember
[System.Diagnostics.DebuggerDisplay("{ToString(), nq}")]
public sealed class ProjectionMember
public sealed class ProjectionMember
[<System.Diagnostics.DebuggerDisplay("{ToString(), nq}")>]
type ProjectionMember = class
type ProjectionMember = class
Public Class ProjectionMember
Public NotInheritable Class ProjectionMember
Inheritance
ProjectionMember
Attributes

Remarks

See Implementation of database providers and extensions and How EF Core queries work for more information and examples.

Constructors

ProjectionMember()

Creates a new instance of the ProjectionMember class with empty MemberInfo chain.

Properties

Last

The last MemberInfo in the chain of MemberInfo represented by this projection member.

Methods

Append(MemberInfo)

Append given MemberInfo to existing chain at the end.

Equals(Object)

Determines whether the specified object is equal to the current object.

GetHashCode()

Serves as the default hash function.

Prepend(MemberInfo)

Prepend given MemberInfo to existing chain at the start.

ToString()

Returns a string that represents the current object.

Applies to