DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Static Public Member Functions | List of all members
Deveel.Data.Sql.Query.ContextExtensions Class Reference

Static Public Member Functions

static void UseDefaultQueryPlanner (this ISystemContext context)
 
static IQueryPlanner QueryPlanner (this IContext context)
 

Detailed Description

Definition at line 22 of file ContextExtensions.cs.

Member Function Documentation

static IQueryPlanner Deveel.Data.Sql.Query.ContextExtensions.QueryPlanner ( this IContext  context)
inlinestatic

Definition at line 28 of file ContextExtensions.cs.

28  {
29  return context.ResolveService<IQueryPlanner>();
30  }
static void Deveel.Data.Sql.Query.ContextExtensions.UseDefaultQueryPlanner ( this ISystemContext  context)
inlinestatic

Definition at line 23 of file ContextExtensions.cs.

23  {
24  context.UnregisterService<IQueryPlanner>();
25  context.RegisterService<QueryPlanner>();
26  }
static IQueryPlanner QueryPlanner(this IContext context)

The documentation for this class was generated from the following file: