Home >Backend Development >C++ >What are the C# Equivalents of Common SQL Server Data Types?

What are the C# Equivalents of Common SQL Server Data Types?

DDD
DDDOriginal
2025-01-07 11:23:49443browse

What are the C# Equivalents of Common SQL Server Data Types?

C# Equivalent of SQL Server Data Types

Exact Numerics

SQL Server Data Type C# Data Type (SQL Server) C# Data Type (.NET Framework)
bigint SqlInt64 Int64
numeric SqlDecimal Decimal
bit SqlBoolean Boolean
smallint SqlInt16 Int16
decimal SqlDecimal Decimal
smallmoney SqlMoney Decimal
int SqlInt32 Int32
tinyint SqlByte Byte
money SqlMoney Decimal

Approximate Numerics

SQL Server Data Type C# Data Type (SQL Server) C# Data Type (.NET Framework)
float SqlSingle Single
real SqlDouble Double

Date and Time

SQL Server Data Type C# Data Type (SQL Server) C# Data Type (.NET Framework)
date SqlDate None
datetimeoffset SqlDateTimeOffset None
datetime2 SqlDateTime2 None
smalldatetime None DateTime
datetime SqlDateTime DateTime
time SqlTime None

Character Strings

SQL Server Data Type C# Data Type (SQL Server) C# Data Type (.NET Framework)
char SqlChars, SqlString String, Char[]
varchar None None
text None None

Unicode Character Strings

SQL Server Data Type C# Data Type (SQL Server) C# Data Type (.NET Framework)
nchar SqlChars, SqlString String, Char[]
nvarchar SqlChars, SqlString String, Char[]
ntext None None

Binary Strings

SQL Server Data Type C# Data Type (SQL Server) C# Data Type (.NET Framework)
binary SqlBytes, SqlBinary Byte[]
varbinary SqlBytes, SqlBinary Byte[]
image None None

Other Data Types

SQL Server Data Type C# Data Type (SQL Server) C# Data Type (.NET Framework)
cursor None None
timestamp None None
hierarchyid None None
uniqueidentifier SqlGuid Guid
sql_variant None Object
xml SqlXml None
table None None

The above is the detailed content of What are the C# Equivalents of Common SQL Server Data Types?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn