Boris Djurdjevic

Results 267 comments of Boris Djurdjevic

Will try to add it, but can't put timeframe on it.

Can confirm the issue, but don't have the solution at the moment. Until fixed your workaround could be improved by encapsulating modelBuilder config with _#if !DEBUG_. ```C# #if DEBUG modelBuilder.Entity().ToTable(nameof(Society),...

Not as such. Sqlite does not support JOIN in UPDATE queries: https://sqlite.org/lang_update.html Query that would work should look like: ```SQL UPDATE ImageMetaData SET [SomeOtherField] = "Blah" FROM (SELECT ImageId, FolderId...

Will consider if and how that could be implemented in the long run. At the moment RawSql is probably good alternative.

Interesting use case, or so to say problem. BulkRead needs unique column by which to merge, so in this situation you need Contains. However regular Contains for very large lists,...

Did not planned it, but can consider. Still this use case is very specific and not easy to make more general since in broad case there could be more then...

Will consider it but I'm not sure how to implement it. Can you write example of what you need to achieve and also if you feel up to it could...