Boris Djurdjevic

Results 267 comments of Boris Djurdjevic

Adding support for another server is a big feature so still no timeframe for it. I'll write here any updates on progress.

Can you write a test where the issue would be reproducible.

I've made some change that should fix this, sent _tableInfo_ arg to _GetPropertiesDefaultValue_ `if (!tableInfo.PropertyColumnNamesDict.ContainsKey(name)) { continue; }` // skip non-EF properties It is Commited, but new nuget not yet...

Can you write entire test where the issue would be reproducible, also try to simplify it to minimal structure required for error to occur.

Can you write test example where the issue would be reproducible. Existing test _InsertTestPostgreSql_ has class _Item_ with property _TimeUpdated_, and it passes regularly.

For complex use case like this one it's better to call BulkOps separately for each table, instead of using Graph.

This combination currently not supported directly. Workaround, would be to call BulkRead after BulkInsertOrUpdate. ```C# //... await bulkRepository.BulkInsertOrUpdateAsync(incomingEntities, bulkConfig); bulkConfig.PropertiesToExclude = null; await context.BulkReadAsync(incomingEntities, bulkConfig); await tran.CommitAsync(cancellationToken); ```

BulkReading subEntites is a problem of itself, and one solution is given in the issue you already referenced. So only when that would be implemented as a special method could...

What DB are you using, Sqlite ? And do you know which dependency exactly is causing the problem? It could be PostgreSql adapter. I had planed to make separate packages...