gpt4 book ai didi

c# - 当所有内容都设置为四位小数时, Entity Framework 四舍五入

转载 作者:太空狗 更新时间:2023-10-29 23:32:37 25 4
gpt4 key购买 nike

我试图理解为什么 Entity Framework 4 在 EF 架构模型和数据库中将精度设置为 4 时四舍五入到两位小数。

这是我对小数字段之一的架构定义:

SellPrice specify a scale of 19,4

这是我的数据库定义

CREATE TABLE OrderItems(
....
[SellPrice] [decimal](19, 4) NOT NULL,
....

当我在计算产品的售价后执行插入查询时,我看到有足够的小数

SellPrice shows lots of decimals

MiniProfiler 显示我的查询并显示该值有小数

DECLARE ...
@15 Decimal = '100,54347826086956521739130435',
...

insert [dbo].[OrderItems](..., [SellPrice], ...)
values (..., @15, ....)
select [OrderItemId]
from [dbo].[OrderItems]
where @@ROWCOUNT > 0 and [OrderItemId] = scope_identity()

但是当我查看 Microsoft Sql Profiler 时,SellPrice 是四舍五入的

exec sp_executesql N'insert [dbo].[OrderItems](..., [SellPrice], ...)
values (..., @15, ...)',
...,@15=100.54,...'

我很难找到四舍五入的值。

最佳答案

我猜,你的 SQL 数据类型应该是 money,而不是 decimal 因为 decimal 在 c# 中是 decimal SQL 不同。特别是,如果您查看 TSQL decimal 类型的 MSDN 文档 ( http://msdn.microsoft.com/en-us/library/ms187746.aspx) 是 states;

In Transact-SQL statements, a constant with a decimal point is automatically converted into a numeric data value, using the minimum precision and scale necessary. For example, the constant 12.345 is converted into a numeric value with a precision of 5 and a scale of 3.

Converting from decimal or numeric to float or real can cause some loss of precision.

没有明确说明这是您问题的原因,但我猜它是。 money 数据类型可能更幸运,因为它是最等价的,如果您从现有数据库生成模型,这也是 EF 的默认值

关于c# - 当所有内容都设置为四位小数时, Entity Framework 四舍五入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14966663/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com