I'm still having problems to write lambda expressions that should create some object and to set properties with the object initializer.
How would this query be written as a lambda expression?
List<CategoryContainer> _catList = (from q in _dc.Category
select new CategoryContainer
{
IDCategory = q.IDCategory,
}).ToList();