我从数据库表中获取值并将它们保存在相应的变量类型中。我对当我从数据库中获取 BIT 类型数据(即 True 或 False)时,我应该使用什么类型的数据类型将其保存在 .
例如
public string Industry { get; set; }
public bool CO2e { get; set; }
public int ID { get; set; }
这里 Industry 和 ID 分别是 string 和 int 类型。但是 ISEFCO2e 是我用于来自表的 BIT 类型数据的变量。那么使用 bool 是否正确?