I want to make a mapper test that maps a database model to a dto
In the database model there is
class Order
{
long Id
}
But on the Dto the same field is named
class OrderDto
{
long OrderId
}
Using ShouldBeEquivalentTo how do I tell FluentAssertions that these fields are the same, but the name is different?