Class QueryCommand
Class to hold query text and values.
Inheritance
System.Object
QueryCommand
Assembly: Alachisoft.NCache.Client.dll
Syntax
public class QueryCommand
Constructors
QueryCommand(String)
Initialized new instance of QueryCommand.
Declaration
public QueryCommand(string query)
Parameters
Type | Name | Description |
---|---|---|
System.String | query | SQL-like query text. |
Properties
Parameters
Query values.
Declaration
public Dictionary<string, object> Parameters { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, System.Object> | Gets the query parameters in form of a Dictionary. |
Query
This property is used to get query text.
Declaration
public string Query { get; }
Property Value
Type | Description |
---|---|
System.String | Provides query text. |