gpt4 book ai didi

c# - DbType 等同于 SqlDbType.Bit

转载 作者:太空狗 更新时间:2023-10-29 20:48:32 24 4
gpt4 key购买 nike

有谁知道等同于 SqlDbType.Bit 的 DbType 是什么?

我正在尝试转换

param[0] = new SqlParameter("@Status", SqlDbType.Bit);
param[0].Value = Status;

db.AddInParameter(dbCommand, "@Status", <DbType dbType>, Status);

但我不知道使用哪个 DbType 来表示单个 Bit。有什么想法吗?

最佳答案

数据库类型bit在服务器端表示为 bool 值,所以对应的DbType值为DbType.Boolean

关于c# - DbType 等同于 SqlDbType.Bit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15243333/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com