Table of Contents

Class QueryParameter

Namespace
Cratis.Applications.Queries
Assembly
Cratis.Applications.dll

Represents a query parameter with its name and type.

public record QueryParameter : IEquatable<QueryParameter>
Inheritance
QueryParameter
Implements
Inherited Members
Extension Methods

Constructors

QueryParameter(string, Type)

Represents a query parameter with its name and type.

public QueryParameter(string Name, Type Type)

Parameters

Name string

The name of the query parameter.

Type Type

The type of the query parameter.

Properties

Name

The name of the query parameter.

public string Name { get; init; }

Property Value

string

Type

The type of the query parameter.

public Type Type { get; init; }

Property Value

Type