I am using Entity Framework 5 code first. My table has a column called Active and its datatype is of type int. The values that are st
Entity Framework 5 code first
Active
int
SELECT CONVERT(A.bitcolumn as bit) as bitout
ado.net will convert bits to bools. So, just convert your integer to a bit in your select statement in t-sql.