Linq to Sql 中 Sum 语句内的 IsNull

发布于 2024-10-03 18:51:55 字数 699 浏览 2 评论 0原文

我正在尝试将一些 SQL 更改为 Linq-to-Sql,但是我在 SQL 中有以下行,我不确定如何转换:

SUM(Quantity  * IsNull(ExchangeRate,1) * Factor ) 

所以到目前为止,我已经将分组 Linq 编写如下:

        var items = from item in _dataContext.GetTable<Trade>()
                    group item by new {item.Curve}
                    into grp
                    select new Model.Position
                               {

                                   Curve = grp.Key.Curve,
                                   Value = ... "That line here"
                               };
        return item

我想使用 let 关键字,并尝试使用 grp.Sum 都遇到了困难,因为查询中存在 IsNull 。

任何转换此查询的帮助将不胜感激!

理查德

I'm trying to change some SQL into Linq-to-Sql, however I have the following line in SQL that I'm not sure how to convert:

SUM(Quantity  * IsNull(ExchangeRate,1) * Factor ) 

So I've so far written the grouping Linq as follows:

        var items = from item in _dataContext.GetTable<Trade>()
                    group item by new {item.Curve}
                    into grp
                    select new Model.Position
                               {

                                   Curve = grp.Key.Curve,
                                   Value = ... "That line here"
                               };
        return item

I've thought of using the let keyword, and tried using grp.Sum have struggled as there's the IsNull in the query.

Any help converting this query would be greatly appreciated!

Richard

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

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

发布评论

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

评论(1

初见 2024-10-10 18:51:55

盲打(没有智能感知:D),但以下应该有效:

var items = from item in _dataContext.GetTable<Trade>()
group item by new { item.Curve } into grp
select new Model.Position
{
    Curve = grp.Key.Curve,
    Value = grp.Sum(i => i.Quantity * (i.ExchangeRate.HasValue ? i.ExchangeRate.Value : 1) * i.Factor)
};

Typing blind (without intellisense :D) but the following should work:

var items = from item in _dataContext.GetTable<Trade>()
group item by new { item.Curve } into grp
select new Model.Position
{
    Curve = grp.Key.Curve,
    Value = grp.Sum(i => i.Quantity * (i.ExchangeRate.HasValue ? i.ExchangeRate.Value : 1) * i.Factor)
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文