I am trying to use Automapper on properties with different names. Is there a better way to do this than to individually map each property to another?
public class User
{
    public string Name { get; set; }
    public int age { get; set; }
}
public class bruker
{
     public string navn { get; set; }
     public int alder { get; set; }
}
 
    