Ivan
Ivan
Hi @crhairr , thank you for your reply. I have forked your repo and committed two test cases in MongoDbContextTests. About the concurrent query issue, I can reproduce it in...
I have adjusted concurrent query test. The more records in mongodb, the more time query costs. It seems like that each query pull many records from mongodb. I also tried...
I logged mongodb profiler data when dbContext.Users.FirstOrDefault(u => u.Name == name) executed and there were two operations sent to the mongodb. From the logs, we can see there was no...
Hi @crhairr, any progress on this? Could you please tell me where should I look into? I want to resolve the issue ASAP, otherwise I have to re-implement my query...
@crhairr, firstly, thank you for your efforts! After some investigaton, I think I have found the root cause of the WhereClause missing in MongoDbQuery. In EFCore "LinqOperatorProvider._Where", it uses "System.Linq.Enumerable.Where"...
Sorry,I forgot to clairfy that I had reverted my changes about the ReplaceClauseReference and still can reproduce it. I think that the mongodb driver binding both Enumerable.Where and Queryable.Where is...
@crhairr, I open a new issue to trace the missing filter in MongoQueryable. [missing filter in MongoQueryable](https://github.com/BlueshiftSoftware/EntityFrameworkCore/issues/32)
@crhairr, Can you reproduce this issue?
If your tests are OK, please provide the code or commit to the repo so that I can verify it on my computer. Thanks!
请问什么时候能支持非properties的继承合并功能, 目前如果公共配置是json格式,内容为 { “k1": "a”, "k2":"b"} , 如果在覆盖配置中定义了{"k1":"c“}, 那么其实整个公共配置就都丢失了,只得到了{"k1":"c“}的结果(k2丢失了), 这种情况下一旦使用了覆盖配置, 继承就失去意义了。