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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -26,4 +26,4 @@ There are a lot of caveats with using named parameters. Most importantly they ca
Under the hood, postgres does not support named parameters. [Npgsql supports named parameters](https://www.npgsql.org/doc/basic-usage.html#positional-and-named-placeholders) by parsing and replacing positional parameters as named parameters. Parsing is not bullet-proof and has a performance impact.
Overall, you should avoid using named parameters unless you really need to.