آقا درست شد اینم کدش
var queue = from que in dc.Queues                where que.Name == dataGridView1.Rows[c].Cells[nameDataGridViewTextBoxColumn.Index].Value
select que;
if(queue.Count()>0)


{
dataGridView1.Rows[0].Cells[btnAction.Index].Value = "...";
}
else
{
dataGridView1.Rows[0].Cells[btnAction.Index].Value = "حاضر";
}