James Turner

Results 175 comments of James Turner

Yeah - that way you have multiple distinct collections with the same properties. I know it is cumbersome but due to the type-nature of the internal entity definition, this is...

> EF allows you to change this at the dbcontext level. > > ```cs > void OnModelCreating (DbModelBuilder modelBuilder) > { > modelBuilder.Entity().ToTable("t_MyCustomTypeName"); > } > ``` > Would this...

It would also be really cool to add support for `explain` on the query. This could be taken even a step further suggesting the ideal way to query that data...

As I suspected, it should be fairly straight forward to build the outer stages and having them configurable at runtime via a custom query converter. The harder bit is definitely...

Basic benchmark of the current LINQ query generation. Some surprises but overall, not fantastic. ``` BenchmarkDotNet=v0.12.1, OS=Windows 10.0.18362.1082 (1903/May2019Update/19H1) Intel Core i7-6700HQ CPU 2.60GHz (Skylake), 1 CPU, 8 logical and...

That is very strange - not sure why there would be a `null` entry there. There should only be two code paths that add items and those items should only...

Unfortunately as of [0.18.0](https://github.com/TurnerSoftware/MongoFramework/releases/tag/0.18.0) with it dropping MongoDB automapping, it no longer has support for the MongoDB client attributes. For the `BsonElement` attribute specifically though, I could add similar support...

Yeah, just hit this myself. Looks like #1968 will fix this so hopefully that gets merged in soon.

Thanks for raising this and wow, that is a subtle but annoying bug. Is it throwing an exception when deserializing? If I can't match up the protos, it should be...

Just checked my PR, I got the proto values right so this is even more strange.