Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install (get) LINQ in Visual Studio 2008?

How can I install LINQ in my Visual Studio 2008?

like image 437
Surya sasidhar Avatar asked Feb 27 '23 11:02

Surya sasidhar


2 Answers

It is already installed. Create a project targeting .NET 3.5 referencing the System.Core assembly and you should be ready to go. If you want to use Linq to SQL or Linq to XML you might need to reference additional assemblies.

like image 143
Darin Dimitrov Avatar answered Mar 12 '23 06:03

Darin Dimitrov


Are you referring to

using System.Linq;

System.Linq Namespace

like image 22
Adriaan Stander Avatar answered Mar 12 '23 07:03

Adriaan Stander