Table of Contents

Class ParameterModel

Namespace
LinqToDB.DataModel
Assembly
linq2db.Tools.dll

Contains method (including constructors and lambdas) parameter basic attributes.

public sealed class ParameterModel
Inheritance
ParameterModel
Extension Methods

Constructors

ParameterModel(string, IType, CodeParameterDirection)

public ParameterModel(string name, IType type, CodeParameterDirection direction)

Parameters

name string
type IType
direction CodeParameterDirection

Properties

Description

Gets or sets xml-doc comment text for parameter.

public string? Description { get; set; }

Property Value

string

Direction

Gets or sets parameter direction.

public CodeParameterDirection Direction { get; set; }

Property Value

CodeParameterDirection

Name

Gets or sets parameter name.

public string Name { get; set; }

Property Value

string

Type

Gets or sets parameter type.

public IType Type { get; set; }

Property Value

IType