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 I have a large list of Ids, which can contain hundred of thousands of records, and a query like this:
List<Guid>idsToFetch=new();// bunch of Idsvaritems=idsToFetch.Select(a =>newPartner{Id=a}).ToList();varbulkConfig=newBulkConfig{UpdateByProperties=newList<string>{nameof(Partner.Id)},};await_context.BulkReadAsync(items,bulkConfig);
The error I constantly keep receiving is The required column 'xmin' was not present in the results of a 'FromSql' operation..
I've tried enablind EnableShadowProperties property, as well as exclude the RowVersion property entirely, but always same error.
EFCore version: 7.0.7
EFCore.BulkExtensions version: 7.1.2
Postgres version: 15.2
Any way to solve this?
The text was updated successfully, but these errors were encountered:
What I'm trying to do is to read large amounts of data by a large list of Ids. I have a database model that looks like this:
Then I have a large list of Ids, which can contain hundred of thousands of records, and a query like this:
The error I constantly keep receiving is
The required column 'xmin' was not present in the results of a 'FromSql' operation.
.I've tried enablind
EnableShadowProperties
property, as well as exclude theRowVersion
property entirely, but always same error.EFCore version: 7.0.7
EFCore.BulkExtensions version: 7.1.2
Postgres version: 15.2
Any way to solve this?
The text was updated successfully, but these errors were encountered: