public ActionResult myItems() {
var dataContext = new RecordsDataContext();
MembershipUser myObject = Membership.GetUser();
string CurrentUserName = myObject.UserName.ToString();
var user = from i in dataContext.myUsers
where i.userName ==CurrentUserName
select i.id;
var items=from j in dataContext.OtherUsers
where j.id_user==user /*error:operator '==' cannot be aplied to operands of type 'int' and 'System.Linq.Iquerable<int>'*/
select j;
return View(items);
}
Pls help me with this error