efcore mysql codefirst设置decimal 默认精度和自定义精度

项目原使用的是oracle的mysql库,在使用codefirst的时候有时候会出现列名不能修改,外键不能正常删除的情况,后在网上查询后决定使用pomelo.mysql库。原来decimal默认精度为(18,2)这个用起来刚刚好,但是一直不能自定义,换成pomelo后,出现默认值直接变成30多位小数,没办法只能查资料,最终找到方法通过自定义属性进行精度的控制。并且当不设置自定义属性时,默认值还是(18,2)。网上资料比较分散并且不完全正确,所以再归纳一下,本环境是efcore5,项目是.net5

主要步骤如下:

1、定义一个DecimalPrecisionAttribute类。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Model
{
    [AttributeUsage(AttributeTargets.Property, Inherited = false, AllowMultiple = false)]
    public class DecimalPrecisionAttribute : Attribute
    {
        #region Field
        private byte _precision = 18;
        public byte _scale = 2;
        #endregion

        #region Construct
        /// <summary>
        /// <para>自定义Decimal类型的精确度属性</para>
        /// </summary>
        /// <param name="precision">precision
        /// <para>精度(默认18)</para></param>
        /// <param name="scale">scale
        /// <para>小数位数(默认2)</para></param>
        public DecimalPrecisionAttribute(byte precision = 18, byte scale = 2)
        {
            Precision = precision;
            Scale = scale;
        }
        #endregion

        #region Property
        /// <summary>
        /// 精确度(默认18)
        /// </summary>
        public byte Precision
        {
            get { return this._precision; }
            set { this._precision = value; }
        }

        /// <summary>
        /// 保留位数(默认2)
        /// </summary>
        public byte Scale
        {
            get { return this._scale; }
            set { this._scale = value; }
        }
        #endregion
    }
}

2、在DbContext重写OnModelCreating方法。

protected override void OnModelCreating(ModelBuilder modelBuilder)
        {
            #region 此处设置decimal默认精度为18,2如果有自定义注释,则直接使用自定义注释
            foreach (var property in modelBuilder.Model.GetEntityTypes()
                .SelectMany(t => t.GetProperties())
                .Where(p => p.ClrType == typeof(decimal) || p.ClrType == typeof(decimal?)))
            {
                var precis = property.PropertyInfo.GetCustomAttribute<DecimalPrecisionAttribute>();

                if (precis == null)
                {
                    property.SetPrecision(18);
                    property.SetScale(2);
                }
                else
                {
                    property.SetPrecision(precis.Precision);
                    property.SetScale(precis.Scale);
                }
            }
            #endregion

            base.OnModelCreating(modelBuilder);
        }

 如果代码跑不起来,或者无效,可能是环境问题,可以留言。

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

tangjiazhu

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值