Having problems; using both queries in the same controller for the same view.
First query
var results = from b in db.tbl_Rough
.Where(c => c.tbl_Assoc.Username == User.Identity.Name)
select b;
Second query
var results1 = from c in db.tbl_Rough
.Where(c => c.tbl_Cous.UserName == User.Identity.Name)
select c;
Both of the above queries work fine. What I am trying to do is combine them so they work in the same view. Both queries need to be checked to see if the users have data.
I’m taking your
and come out with