Hello!
I want to replace some selected values from my query. This is my code:
public IQueryable<Offert> VisaOfferter()
{
databasen db = new databasen();
string pn = (string)Session["personnummer"];
var query = (from j in db.Offert where j.Personnummer == pn select j);
return query;
}
I want to replace the values of "Jobb"(j.Jobb) that contains "example1" with "The real text".
How do i do that in the query? Thank you
Go to the complete details ...