Automapper: how to flat a list of object into a single object – Asp.net
I have this entity from the database public class SettingsDb { public int Id { get; set; } public string Section { get; set; } public string Name { get; set; } public string Value { get; set; } }…