Table of Contents

Interface IQueryStatement

Namespace
FluentCommand.Query
Assembly
FluentCommand.dll

Defines an interface for a SQL query statement, including the SQL text and its parameters.

public interface IQueryStatement

Properties

Parameters

Gets the collection of QueryParameter objects used in the query.

IReadOnlyCollection<QueryParameter> Parameters { get; }

Property Value

IReadOnlyCollection<QueryParameter>

An IReadOnlyCollection<T> of QueryParameter representing the parameters and their values for the SQL statement.

Statement

Gets the SQL statement text to be executed.

string Statement { get; }

Property Value

string

A string containing the SQL query statement.