メソッドに渡された 2 つのパラメーターがあり、それらを最終的なクエリ リストにアタッチする必要があります。
(第 1 パラメーター)
string[] Price= new string[5];
Price= new string[] { "50", "25", "35" };
(第 2 パラメーター)
List<string> DiscountPrice= new List<string>();
DiscountPrice.Add ("10");
DiscountPrice.Add ("5");
DiscountPrice.Add ("3");
var list= (from d in context.List
where ....
select new MyNewList
{
Name = d.Name,
Country = d.Country,
**Price = ??** //how do I attach the parameters one by one? In the order they were saved?
**DiscountPrice** = ??
}).ToList<MyNewList>();