使用 ToString 重新格式化 Linq 中的数字字段
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它的
nullable
字段(也许)。Its
nullable
field (Maybe).听起来 e.Item_Amount 不是数字类型。
您可以将其类型更改为数字类型,例如 Int32 或十进制(首选),或者在迭代期间解析值。
如果您处理可为 null 的类型,您可以执行以下操作:
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.
If your dealing with a nullable type, you could do the following: