How to address Boolean method below. The value Online has to be set. The error I get is
"c# LINQ to Entities does not recognize the method 'Boolean"
foreach (var i in (from a in db.Color
join i in db.ColorClothes
on a.InstallationId equals i.InstallationId
where a.Id == Id
select
new
{
ID= i.id,
OnLine = Utilities.IsConnectionValid(i.InstallationId) ? true : false, I get the error right here
}).ToList())
Rajkiran SwainPosted Nov 4, 2017, 4:04 AM
Posted Nov 4, 2017, 1:55 AM