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
Using the SqlServerProvider or SqlChangeTrackingProvider if a column name contains the '/' character, sync will fail.
A quick look at what is happening is that the column names are being transformed to variable name by prepending a '@' character. '/' is not a valid character in a Sql variable name, so an error is thrown.
I can probably write a fix for this if you assign it to me.
The text was updated successfully, but these errors were encountered:
Using the SqlServerProvider or SqlChangeTrackingProvider if a column name contains the '/' character, sync will fail.
A quick look at what is happening is that the column names are being transformed to variable name by prepending a '@' character. '/' is not a valid character in a Sql variable name, so an error is thrown.
I can probably write a fix for this if you assign it to me.
The text was updated successfully, but these errors were encountered: