We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32aff5e commit bab8094Copy full SHA for bab8094
Orm/Xtensive.Orm/Sql/SqlDml.cs
@@ -731,8 +731,6 @@ public static SqlFunctionCall DateToDateTimeOffset(SqlExpression expression)
731
732
public static SqlFunctionCall TimeAddHours(SqlExpression source, SqlExpression hours)
733
{
734
- ArgumentValidator.EnsureArgumentNotNull(source, "source");
735
- ArgumentValidator.EnsureArgumentNotNull(hours, "hours");
736
ArgumentNullException.ThrowIfNull(source, nameof(source));
737
ArgumentNullException.ThrowIfNull(hours, nameof(hours));
738
return new SqlFunctionCall(SqlFunctionType.TimeAddHours, source, hours);
0 commit comments