Removes unused method

This commit is contained in:
Shannon
2014-10-03 00:23:28 +10:00
parent 737f2fb707
commit 72dc5fc477

View File

@@ -626,13 +626,6 @@ namespace Umbraco.Core.Persistence.Querying
// ? "'" + escapeCallback(value) + "'"
// : value.ToString();
//}
public virtual string EscapeParam(object paramValue)
{
return paramValue == null
? string.Empty
: SqlSyntaxContext.SqlSyntaxProvider.EscapeString(paramValue.ToString());
}
public virtual bool ShouldQuoteValue(Type fieldType)
{