One to many mode relationship in C# ASP.Net core using Linq
From a single query
DataTable shops=query();
List<SellerApplicationModel> shoplist = (from i in shops.AsEnumerable()
select new SellerApplicationModel
{
Id = i.Field<Int64>("id"),
...