Hello, I have a column that holds VARCHARs and I have a flag that determines if the value is a string or integer. I would like perform a search on the integers but they are stored as VARCHAR. How do I do this?
I am trying to do this in a where clause.
var q = from x in context.table
where x.Criteria > 0
select new
{
x
}