10 lines
316 B
C#
10 lines
316 B
C#
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(); } }
|
|
}
|
|
} |