使用 ToString 重新格式化 Linq 中的数字字段

发布于 2024-12-24 19:08:44 字数 328 浏览 3 评论 0原文

我有一个 LINQ 查询,它创建一个匿名集合。我要返回的一件事是一个数字,我希望将其格式化为货币而不是 50.23888838222 等。但是,如果我尝试类似的操作:

... select new { Amount = e.Item_Amount.ToString("C") }

我会被告知“.ToString 没有重载需要 1 个参数”。

然而,当更改单个字符串时,此代码在其他地方可以正常工作。

我在使用 Linq to Sql 时遇到过类似的问题,并且了解原因,但这只是内存中的集合。实现这一目标的最佳方法是什么?

谢谢

I have a LINQ query which creates an anonymous collection. One thing I'm returning is a number, which I'd like formatted as currency instead of 50.23888838222 etc. However if I try something like:

... select new { Amount = e.Item_Amount.ToString("C") }

I get told 'No overload for .ToString takes 1 arguments.

However this code works fine elsewhere when changing an individual string.

I've had issues like this with Linq to Sql and understand why, but this is just an in memory collection. What's the best way to achieve this end?

Thanks

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

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

发布评论

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

评论(2

北音执念 2024-12-31 19:08:44

它的 nullable 字段(也许)。

 Amount = e.Item_Amount.Value.ToString("C")
 //or
 Amount = (e.Item_Amount ?? 0).ToString("C");

Its nullable field (Maybe).

 Amount = e.Item_Amount.Value.ToString("C")
 //or
 Amount = (e.Item_Amount ?? 0).ToString("C");
如梦初醒的夏天 2024-12-31 19:08:44

听起来 e.Item_Amount 不是数字类型。

您可以将其类型更改为数字类型,例如 Int32 或十进制(首选),或者在迭代期间解析值。

select new { 
  Amount = decimal.Parse(e.Item_Amount).ToString("C") 
}

如果您处理可为 null 的类型,您可以执行以下操作:

select new { 
      Amount = (e.Item_Amount ?? 0).ToString("C") 
}

It sounds like e.Item_Amount is not of a numeric type.

You can either change its type to a numeric type such as Int32 or decimal (preferable) or to parse the values during iteration.

select new { 
  Amount = decimal.Parse(e.Item_Amount).ToString("C") 
}

If your dealing with a nullable type, you could do the following:

select new { 
      Amount = (e.Item_Amount ?? 0).ToString("C") 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文