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
In SqlBuilder and ParameterHelper.ProcessParams there is the option to reuse parameters. When using LINQ-style queries, this is hidden away.
Is it possible to expose this?
Does reusing parameters cause issues anywhere?
If not can it just be done always?
Although actually after some testing, I've found that when using ToPageAsync, parameters are not reused in the main part of the query, but they are reused in the Count part, so I guess more needs to be done.
The text was updated successfully, but these errors were encountered:
In
SqlBuilder
andParameterHelper.ProcessParams
there is the option to reuse parameters. When using LINQ-style queries, this is hidden away.Although actually after some testing, I've found that when using ToPageAsync, parameters are not reused in the main part of the query, but they are reused in the Count part, so I guess more needs to be done.
The text was updated successfully, but these errors were encountered: