Suppose I have the following hypothetical table:
How can I make a DataGridView
display the following?
Notice the values of Sick
have changed.
I have tried the following to no avail:
var query = from c in Patients
select new
{
c.Name,
c.Sick == 1 ? "Yes" : "No"
};