James Turner
James Turner
While not strictly necessary to get this in, we should wait for #591 to be merged. It does remove some last traces of using the System.IO namespace which should make...
I'm going to guess it is likely due to this line: https://github.com/TurnerSoftware/MongoFramework/blob/840ebf026c50585072efbddf9a058c884415a49a/src/MongoFramework/MongoDbConnection.cs#L29 Basically within the MongoDB Driver, they have multiple implementations of the LINQ-backed system. V3 is the default as...
Hey @kirk-marple - thanks for raising the issue. Strange that you can't upgrade as [System.Text.Json v7.0.0 targets .NET 6](https://www.nuget.org/packages/System.Text.Json/7.0.0#supportedframeworks-body-tab) so I don't know why it wouldn't be working for you....
After talking with some other .NET developers, I think I understand what is going on. Basically Azure Durable Entities is (kinda) replacing our v7 libraries with v6 ones which, through...
With #336 being completed, you can do exactly what you described with a mapping builder for MongoFramework. There is a basic example on there readme here: https://github.com/TurnerSoftware/MongoFramework#entity-mapping-basics
Hey @SmithPlatts - haven't actually tried XML serialization before. I imagine it may have some trouble with our `OneOrMany` and `Values` types without some dedicated serializer for the,. If there...
I don't imagine the existing performance of the library would be impacted - like if we just need extra attributes, that's effectively a no-op in terms of performance. If we...
This one I'm more on the fence about - on one hand, you're right, the validator says it is fine. On the other, should we be potentially looking at more...
So the `MainEntity` property is `OneOrMany` and while we have implicit conversions for `OneOrMany` etc, if you passed a `List`, that can't implicitly convert to a `OneOrMany` but it can...
Hi @fewless2019 - I can't recreate the problem you've describe by using the steps you've mentioned. Can you tell me the version of .NET you're using, whether you're pulling in...