DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
SystemContextExtensions.cs
Go to the documentation of this file.
1 using System;
2 
3 using Deveel.Data.Services;
4 
5 namespace Deveel.Data.Xml {
6  public static class SystemContextExtensions {
7  public static void UseXml(this ISystemContext context) {
8  context.RegisterService<XmlTypeResolver>();
9  context.RegisterInstance(XmlFunctions.Resolver);
10  }
11  }
12 }
The execution context of a database system, that is defining the configurations and the components us...
static void UseXml(this ISystemContext context)
static IRoutineResolver Resolver
Definition: XmlFunctions.cs:11