C# 中的 sum 和 Join 与列表泛型

发布于 2024-12-11 03:22:50 字数 1226 浏览 0 评论 0原文

我想收集获得的销售额。

我的课程如下:

 public class PartSell
{
    public string partSellId { get; set; }
    public string partId { get; set; }
}

public class Part
{
    public string partId { get; set; }
    public string Price { get; set; }
}

我的数据如下:

 List<Part> lstPart = new List<Part>()
            {
                new Part{partId="100",Price="150000"},
                 new Part{partId="110",Price="180000"},
                  new Part{partId="120",Price="560000"},
                   new Part{partId="150",Price="970000"}
            };

            List<PartSell> lstPartSell = new List<PartSell>()
             {
                 new PartSell{partId="100",partSellId="1"},
                 new PartSell{partId="110",partSellId="2"},
                 new PartSell{partId="110",partSellId="3"},
                 new PartSell{partId="100",partSellId="4"},
                 new PartSell{partId="100",partSellId="5"},
                 new PartSell{partId="100",partSellId="6"},
                 new PartSell{partId="120",partSellId="7"},
                 new PartSell{partId="100",partSellId="8"}
             };

如何计算 Code 11 的总价

I want to collect sales gained.

My classes are as follows:

 public class PartSell
{
    public string partSellId { get; set; }
    public string partId { get; set; }
}

public class Part
{
    public string partId { get; set; }
    public string Price { get; set; }
}

My data is as follows :

 List<Part> lstPart = new List<Part>()
            {
                new Part{partId="100",Price="150000"},
                 new Part{partId="110",Price="180000"},
                  new Part{partId="120",Price="560000"},
                   new Part{partId="150",Price="970000"}
            };

            List<PartSell> lstPartSell = new List<PartSell>()
             {
                 new PartSell{partId="100",partSellId="1"},
                 new PartSell{partId="110",partSellId="2"},
                 new PartSell{partId="110",partSellId="3"},
                 new PartSell{partId="100",partSellId="4"},
                 new PartSell{partId="100",partSellId="5"},
                 new PartSell{partId="100",partSellId="6"},
                 new PartSell{partId="120",partSellId="7"},
                 new PartSell{partId="100",partSellId="8"}
             };

How do I calculate the total price for Code 11

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小矜持 2024-12-18 03:22:50

试试这个

var query = from ll in lstPartSell
                    join lp in lstPart on ll.partId equals lp.partId
                    where ll.partId == "110"
                    select int.Parse(lp.Price);
int sum = query.Sum();

try this

var query = from ll in lstPartSell
                    join lp in lstPart on ll.partId equals lp.partId
                    where ll.partId == "110"
                    select int.Parse(lp.Price);
int sum = query.Sum();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文