Couchbase.N1QL.QueryRequest.Create C# (CSharp) Method

Create() public static method

Creates a query using the given plan as an optimization for the originalStatement.
public static Create ( Couchbase.N1QL.QueryPlan plan, string originalStatement ) : IQueryRequest
plan Couchbase.N1QL.QueryPlan The plan.
originalStatement string The original statement, unoptimized.
return IQueryRequest
        public static IQueryRequest Create(QueryPlan plan, string originalStatement)
        {
            return new QueryRequest(plan, originalStatement);
        }

Same methods

QueryRequest::Create ( ) : IQueryRequest
QueryRequest::Create ( string statement ) : IQueryRequest