Пожалуйста, преобразуйте этот код в VB.NET.
var catcopy2 = categories.AsEnumerable().Select(x => new CategoriesBackup() { CategoryID = x.CategoryID, CategoryName = x.CategoryName, Description = x.Description, Picture = x.Picture });
проверьте этот инструмент: http://www.developerfusion.com/tools/convert/csharp-to-vb/
Dim catcopy2 = categories.AsEnumerable().[Select](Function(x) New CategoriesBackup() With { _ Key .CategoryID = x.CategoryID, _ Key .CategoryName = x.CategoryName, _ Key .Description = x.Description, _ Key .Picture = x.Picture _ })