Skip to content

Commit

Permalink
Added replace of non nullable int32
Browse files Browse the repository at this point in the history
  • Loading branch information
Rikard Andersson committed May 14, 2024
1 parent de34da1 commit c001821
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ internal static string ToSqlPredicate<T>(this Expression<T> expression, params s
stringBuilder.Replace("&&", "AND");
stringBuilder.Replace("==", "=");
stringBuilder.Replace("(System.Nullable`1[System.Int32])", "");
stringBuilder.Replace("(System.Int32)", "");
return stringBuilder.ToString();
}
internal static string ToSqlUpdateSetExpression<T>(this Expression<T> expression, string tableName)
Expand Down

0 comments on commit c001821

Please sign in to comment.