I actually have two questions today, but they are both small :-)
1) Where is a good resource for learning linq/sql selections in C#?
2) Say I have a table called Model, with properties Name, Color, Shape. How do I do a query to select only the rows which DONT have null values in any column.
I've tried:
var d = database.Portfolio.SelectMany(x => x.Model.Model1 != null);
Thanks in advance
edits:
looks like var models = from p in database.Models.Where(x => x.Model1 != null) select p.Model1;