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 Snowflake, query parameters do not start with @.
They either start with : or are anonymous (?).
Dapper supports it (there is even Dapper.SqlMapper.Settings.UseIncrementalPseudoPositionalParameterNames setting).
However, Dapper.Contribs' Get() method has @ hardcoded, which causes Snowflake error like SQL compilation error: syntax error line 1 at position 45 unexpected '@id'.
The text was updated successfully, but these errors were encountered:
In Snowflake, query parameters do not start with
@
.They either start with
:
or are anonymous (?
).Dapper supports it (there is even
Dapper.SqlMapper.Settings.UseIncrementalPseudoPositionalParameterNames
setting).However, Dapper.Contribs'
Get()
method has@
hardcoded, which causes Snowflake error likeSQL compilation error: syntax error line 1 at position 45 unexpected '@id'.
The text was updated successfully, but these errors were encountered: