You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ReportViewer.NET uses Dapper and uses parameterised queries. When a user passes more than 2100 items in a report to an IN query, it'll fail as SQL Server's max number of allowed parameters is 2100.
Do we:
a) Check passed list against available options and pass that directly to the SQL query, avoiding parameterising.
b) Keep as is and see this as a difference to what the native MS Report Viewer does
The text was updated successfully, but these errors were encountered:
ReportViewer.NET uses Dapper and uses parameterised queries. When a user passes more than 2100 items in a report to an IN query, it'll fail as SQL Server's max number of allowed parameters is 2100.
Do we:
a) Check passed list against available options and pass that directly to the SQL query, avoiding parameterising.
b) Keep as is and see this as a difference to what the native MS Report Viewer does
The text was updated successfully, but these errors were encountered: