I am planning to use message based architecture in my project. But i have a small question. Suppose i send 2 update requests from 2 message queues, in a 5-minute interval (from 2 different endpoints) for the same Entity. What happens if the first request reached slower. (i.e after the second one was sent). ItRead more
I recently stumbled upon this code where one wants to create a Path of Segments and a Segment must be aware of which Path it is on. public class Path { public List<Segment> Segments { get; } = new List<Segment>(); } public class Segment { public int Property { get; } public Path Path {Read more