有誰知道什麼是DbType相當於SqlDbType.Bit?DbType相當於SqlDbType.Bit
我想轉換
param[0] = new SqlParameter("@Status", SqlDbType.Bit);
param[0].Value = Status;
到
db.AddInParameter(dbCommand, "@Status", <DbType dbType>, Status);
,但我不知道是哪的DbType用來表示單個位。有任何想法嗎?
一個布爾也許?儘管DbType是Bit,.NET類型是bool,那麼「DbType等同於SqlDbType.Bit」是什麼意思? – Freeman 2013-03-06 09:22:49
我同意,布爾,因爲它存儲爲0或1. – Derek 2013-03-06 09:25:51
@Freeman不會布爾採取真或假?和位需要1,0 .. – Aditi 2013-03-06 09:26:17