AutoMapper: Map single object to IEnumerable/Collection of children while passing properties – Shopify
I have the following two ShopifySharp objects. public class Product { public string Title { get; set; } public string BodyHtml { get; set; } public IEnumerable<ProductVariant> Variants { get; set; } } public class ProductVariant { public string Title…