当前位置:网站首页>[EF core] mapping relationship between EF core and C data type
[EF core] mapping relationship between EF core and C data type
2022-07-05 23:41:00 【Average again】
| C# data type | Mapping to SQL Server Data type of |
|---|---|
| int | int |
| string | nvarchar(Max) |
| decimal | decimal(18,2) |
| float | real |
| byte[] | varbinary(Max) |
| datetime | datetime |
| bool | bit |
| byte | tinyint |
| short | smallint |
| long | bigint |
| double | float |
| char | No mapping |
| sbyte | No mapping (throws exception) |
| object | No mapping |
边栏推荐
- From the perspective of quantitative genetics, why do you get the bride price when you get married
- poj 2762 Going from u to v or from v to u? (推断它是否是一个薄弱环节图)
- 11gR2 Database Services for "Policy" and "Administrator" Managed Databases (文件 I
- 21.PWM应用编程
- Go language implementation principle -- map implementation principle
- Spire.PDF for NET 8.7.2
- 4 points tell you the advantages of the combination of real-time chat and chat robots
- Calculating the number of daffodils in C language
- 11gR2 Database Services for " Policy" and " Administrator" Managed databases (file I
- Common static methods of math class
猜你喜欢
随机推荐
Initial experience | purchase and activate typora software
LeetCode——Add Binary
98. 验证二叉搜索树 ●●
C# Linq Demo
When to use useImperativeHandle, useLayoutEffect, and useDebugValue
(4)UART應用設計及仿真驗證2 —— TX模塊設計(無狀態機)
证明 poj 1014 模优化修剪,部分递归 有错误
In C#, why can't I modify the member of a value type instance in a foreach loop?
Qcombox (rewrite) + qcompleter (auto completion, auto loading the drop-down options of qcombox, setting the background color)
How to enable relationship view in phpMyAdmin - how to enable relationship view in phpMyAdmin
Development specification: interface unified return value format [resend]
rsync远程同步
Bao Yan notebook IV software engineering and calculation volume II (Chapter 8-12)
CIS基准测试工具kube-bench使用
STM32__06—单通道ADC
14 MySQL-视图
Dynamic planning: robbing families and houses
【经典控制理论】自控实验总结
How to design API return code (error code)?
UART Application Design and Simulation Verification 2 - TX Module Design (Stateless machine)








