Table of Contents

Struct PgTableValuedFunctionExpression.ColumnInfo

Namespace
Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions.Internal
Assembly
Npgsql.EntityFrameworkCore.PostgreSQL.dll

Defines the name of a column coming out of a PgTableValuedFunctionExpression and optionally its type.

public readonly record struct PgTableValuedFunctionExpression.ColumnInfo : IEquatable<PgTableValuedFunctionExpression.ColumnInfo>
Implements
Inherited Members

Constructors

ColumnInfo(string, RelationalTypeMapping?)

Defines the name of a column coming out of a PgTableValuedFunctionExpression and optionally its type.

public ColumnInfo(string Name, RelationalTypeMapping? TypeMapping = null)

Parameters

Name string
TypeMapping RelationalTypeMapping

Properties

Name

public string Name { get; init; }

Property Value

string

TypeMapping

public RelationalTypeMapping? TypeMapping { get; init; }

Property Value

RelationalTypeMapping