Rename NEquals

This commit is contained in:
Stephan
2018-12-05 12:18:07 +01:00
parent b8b0404393
commit 0dda7c81a0
4 changed files with 23 additions and 23 deletions

View File

@@ -797,7 +797,7 @@ namespace Umbraco.Core
/// <param name="fallbackValue">The value to use when any value is null.</param>
/// <remarks>Do not use outside of Sql expressions.</remarks>
// see usage in ExpressionVisitorBase
public static bool NEquals<T>(this T? value, T? other, T fallbackValue)
public static bool SqlNullableEquals<T>(this T? value, T? other, T fallbackValue)
where T : struct
{
return (value ?? fallbackValue).Equals(other ?? fallbackValue);