Using Projections to Boost Performance
Learn the practice of using projections in your LINQ statements to ensure you are not over retrieving data values from your Entity Framework model.
Learn the practice of using projections in your LINQ statements to ensure you are not over retrieving data values from your Entity Framework model.
By default LINQ uses deferred query execution. This means you can access the results, change the data and use the same query again. Using Visual Studio 2010, beta 1 and the .NET Framework 4.0 we'll see how to use this to our advantage.
Learn how to build queries with the Entity Framework that involve multiple tables as well as binding in the UI with the EntityDataSource.
Do you need to create Dynamic Where Clauses at runtime? No need to use string concatenation with SQL, LINQ is fully capable of performing the same task.
Discover an ADO.NET Entity Framework tutorial covering basic data operations for applications, including LINQ To Entities, Method Expressions, stored procedure mapping, and a little discussion about its usage in an enterprise environment.
An ADO.NET Data Services Tutorial covering REST, querystring operations and expressions, HTTP verbs, Linq to Data Services, security, exceptions and tracing.
With more and more computers using a multi-core processor, the free lunch of increased clock speeds and the inherent performance gains are over. Software developers must instead make sure their applications take use of all the cores available in an efficient manner. New features in .NET 4.0 mean that managed code developers too can join the party.
Discover another valuable part of the LINQ family, LINQ to SQL. LINQ to SQL that allows users to query and manipulate objects associated with relational database tables.
Old school programming, whereby the programmer reads control values and writes inline SQL, still works, but it's so 90s. If you are new to WinForms or Web programming but experienced, peruse the article and then master LINQ.
By Chris Bennett - Learn how to implement a simple Standard Deviation function for LINQ (Language Integrated Query).
Gain an understanding of LINQ (Language Integrated Query) to XML and see why you'll never want to use the DOM again.
Gain a solid understanding of what Language Integrated Query (LINQ) is and isn't and what it can do for you.
By using LINQ for XML for Objects (aka LINQ to XSD), you can define an XML document and an XML Schema that then can be treated like any other data repository. Discover how Visual Studio makes this easy by generating strongly typed object wrappers that are easy to use.
Dynamically construct XML documents in code quickly and easily with LINQ to XML and Functional Construction.
Use LINQ's from clause to easily traverse the relationships in your database.
Use LINQ to Objects to easily sort and reshape your data.
Range variables are powerful and flexible. Discover why they are critical to mastering LINQ queries.
LINQ can be used for much more than just accessing data stored in your database. Learn how you can use the from clause with other types of data.
Learn about the basic mechanism of querying and submitting changes to relational data stores.
Learn about the System.Xml.Linq namespace and how to construct and query XML data with LINQ.
Learn about language-integrated queries with C# and read an overview on the LINQ to objects API.