技術誌記錄學習或專案執行當下遇到的問題及解決方案,方便日後翻查,益人益己!
在 EF Core 使用 decimal 類型的屬性時,一直跳出 No store type was specified for the decimal property 的警告訊息
No store type was specified for the decimal property
在屬性上方加上 [Precision(18, 2)]
[Precision(18, 2)]
[Precision(18, 2)] public decimal Price { get; set; }
> 需要 .NET EF Core 6 以上的版本才支援