我正在使用 linq to sql 从我的 mvc 项目中的 IQueryable 对象中提取数据。在这种情况下,我试图找到用户共有的专辑。谢谢你的帮助。
Albums.Where(x=>x.userid == _userid && x.userid == _otheruserid);
//This will pull all the respected albums from each user.
//I just would like to pull the albums they have in common