博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
EntityFramework学习笔记之Decimal精度控制
阅读量:5021 次
发布时间:2019-06-12

本文共 601 字,大约阅读时间需要 2 分钟。

1 public class EFDbContext : DbContext2 {3    protected override void OnModelCreating(System.Data.Entity.DbModelBuilder modelBuilder)4    {5        modelBuilder.Entity
().Property(object => object.property).HasPrecision(12, 10);6 7 base.OnModelCreating(modelBuilder);8 }9 }
1 public DecimalPropertyConfiguration HasPrecision(2 byte precision,3 byte scale )

This is to show how to configure the precision by overriding the DbContext.OnModelCreating() method.

You can check information about this on the page:

转载于:https://www.cnblogs.com/super86/archive/2013/04/25/3042694.html

你可能感兴趣的文章
js-权威指南学习笔记19.2
查看>>
hexo 搭建博客
查看>>
关于 UIWebView 几个高级用法
查看>>
maven创建的项目中无法创建src/main/java 解决方案
查看>>
华为软件开发云测评报告二:代码检查
查看>>
集合1
查看>>
js 原生 ajax
查看>>
关键词 virtual
查看>>
建造者模式(屌丝专用)
查看>>
UVALive 4730 Kingdom +段树和支票托收
查看>>
公布windows的"Universal Apps" Unity3D游戏
查看>>
[APIO2010]特别行动队
查看>>
[SCOI2016]幸运数字
查看>>
SpringBoot 集成ehcache
查看>>
初步swift语言学习笔记2(可选类型?和隐式可选类型!)
查看>>
Nginx + Tomcat 反向代理 如何在高效的在一台服务器部署多个站点
查看>>
在Vs2012 中使用SQL Server 2012 Express LocalDB打开Sqlserver2012数据库
查看>>
在Macos下完美解决Adobe Dreamweaver CC 2018 汉化及操作方法
查看>>
【转】 Newtonsoft.Json高级用法
查看>>
CodeBlocks X64 SVN 编译版
查看>>