本文介绍了如何在EntityFrameworkCore 1.0 rc2中实现字段decimal(5,2)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在 EntityFrameworkCore 1.0 rc2中实现字段 decimal(5,2)

HasPrecision 似乎不再可用?

推荐答案

我看到了一些这样的示例:

I'm seeing some examples like this:

 entityBuilder.Property(r => r.TotalScore)
            .HasColumnType("decimal(5,2)")
            .IsRequired(true);

和支持此功能的代码在这里,因此希望您所使用的版本中支持该功能:

and the code to support this is here, so hopefully this is supported in the version you're using:

这篇关于如何在EntityFrameworkCore 1.0 rc2中实现字段decimal(5,2)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 05:17