I need to send a value to database this my code
var concerthallID = from _concert in db.tbl_Content_Context
join _concerthall in db.tbl_Concert_ConcertHall on _concert.ContextID equals _concerthall.ContextID
where _concert.EnContextID == concertid
select _concerthall.ConcertHallID;
how to set ConcertHallID to a Variable?