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
Properties
Name
The name of the query parameter.
public string Name { get; init; }Property Value
Type
The type of the query parameter.
public Type Type { get; init; }