We are migrating our software from .NET Framework 4.5.2 to .NET 6.
As you can imagine, that’s a lot of work to do.
So far, our biggest challenge is the loss of WCF that we try to replace with Protobuf-net.
First of all, is that a good idea in your opinion? Seems like everything is more complicated and our software is pretty huge so we want to be sure that’s a good idea.
If that’s the thing to do, we have an issue with circular reference because our data is coming for Entity Framework and we have a lot of loop.
We tried to intercept content in OnSerializing and remove loop but because de message size change, we have an exception.
Do you guys have any tips about this ?
Thank you !