Hi everyone, I'm new to LINQ, and I'm having troubles to get intellisense , but I'm using a typed dataset : sample : Code Snippet Dim query = From dtr_client In tbl_Clients _ Where dtr_client!type = 3 So this is a basic LINQ query. I declare a query ("query"), and I retrieve datarows elements ("dtr_client") from a datatable ("tbl_Clients") The dataset, along with the datatables have been done directly in Visual Studio 2008 with the designer . It is then hardcoded into my project. I believe it is
Read More...