Adds ability to use the query builder with string matches based on an NText column

This commit is contained in:
Shannon
2013-12-18 17:22:00 +11:00
parent ef4246478d
commit a21aa079ff
16 changed files with 307 additions and 53 deletions

View File

@@ -0,0 +1,10 @@
namespace Umbraco.Core.Persistence.SqlSyntax
{
/// <summary>
/// Static class that provides simple access to the Sql CE SqlSyntax Provider
/// </summary>
internal static class SqlCeSyntax
{
public static ISqlSyntaxProvider Provider { get { return new SqlCeSyntaxProvider(); } }
}
}