problem with contains in objectquery
- by Luca Romagnoli
This code give me an error:
string rus = "," + db_user.Anagrafica_Dipendente.ID_Dipendente + ",";
int i = db.CBR_User.Count(p => p.RiceviMail == true && ("," + p.Dipe + ",").Contains(rus))
p.Dipe is a string
how can i do that?
thanks