2025/04/06

[EF Core] 解決 Decimal 類型出現 No store type was specified for the decimal property 警告訊息

markdown ### 版本 - .NET 8 - EF Core 9 ### 問題 在 EF Core 使用 decimal 類型的屬性時,一直跳出 No store type was specified for the decimal property 的警告訊息 ### 解決方法 在屬性上方加上 [Precision(18, 2)] ```cs [Precision(18, 2)] public decimal Price { get; set; } ``` > 需要 .NET EF Core 6 以上的版本才支援 ### 參考 - MS Learn - PrecisionAttribute Class - Decimal precision and scale in EF Code First