How do I use the || (or) operator in a lambda expression?
Here is what I have tried:
db.assets.Where((u => u.userName.Equals(userName)) || (c => c.category.Equals("DefaultMapMarker"))
Thanks in advance
EDIT
I am wanting to get a list of assets for the current user, as well as all assets that are for all users. Assets for all users have a category of DefaultMapMarker.