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
Then using BulkSaveChangesAsync, in the MERGE command there's a gap in that field:
SELECT
...
JSON_QUERY([m].[ListField], '$')
FROM (
SELECT [Id],
...
(no mention of ListField)
FROM [dbo].[Object1Temp87fb13faOutput]
WHERE [Id] IS NOT NULL
How can I fix this?
Thank you!
The text was updated successfully, but these errors were encountered:
The field needs to be explicitly defined in the entity as well if it it not already.
Otherwise write entire code snippet or a test where the issue would be reproducible.
I have a DbContext configured like this for a specific field:
Then using
BulkSaveChangesAsync
, in theMERGE
command there's a gap in that field:How can I fix this?
Thank you!
The text was updated successfully, but these errors were encountered: