Here is my code
var bms = from b in context.bookmark join q in context.question1Set on b.bookmark_id equals q.question_id join u in context.userinfo on b.bookmark_ownerid equals u.user_userid where b.bookmark_ownerid == new Guid(userid.ToString()) && q.question_isdeleted == false
Error I get: Only parameterless constructors and initializers in LINQ to Entities are supported
I have no idea how to fix this. Any ideas?
source share