In Sql i have Bit DataType.
[Display(Name = "Active")]
public bool IsActive { get; set; }
while (rdr.Read())
{
objLocation.Add(new Location
{
Id = rdr["Id"].ToString(),
Description = rdr["Description"].ToString(),
IsActive = rdr["IsActive"].ToString(),
});
}