Sign In
The Visual Basic Team
A group blog from members of the VB team Visual Basic Developer Center | How-Do-I Videos | Power Packs | Code Samples | Team Interviews | Team Webcasts
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
Alan Berman
Alexandre Moura
Amanda Silver
Anders Hejlsberg
Anthony D. Green
async
asynchronous programming
Avner Aharoni
await
Beth Massi
Bill Horst
ClickOnce
Converting SQL to LINQ
Corrina Barber
Daniel Walzenbach
Data_Design
Debugger
Deployment
Did you know?
DLR
Doug Rothaus
Encoding
IDE
I'm A VB!
Interview
IQueryable
Jared Parsons
Joe Binder
John Rivard
John Stallo
Jonathan Aneja
Karen Liu
Kathleen McGrath
Kevin Halverson
Kinnect
Kit George
LINQ Cookbook
LINQ/VB9
Lisa Feigenbaum
Luca Bolognese
Lucian Wischik
Mary Lee
Matt Gertz
metadata
Microframework
Milind Lele
MSI
multi-threading
Netduino
Office Development
Pages
parallel programming
Patrick Dengler
Paul Vick
Paul Yuknewicz
PDC2008
Performance
PInvoke
Power Packs
Roslyn
Sarika Calla
Scott Wisniewski
screen savers
Shyam Namboodiripad
Silverlight
Silverlight 4 Firestarter
Smart Devices
SMB
Sophia Salim
Spot the Bug!
Spotty Bowles
SQL
Steve Stein
Syntax Visualizer
task cancellation
TDD
TechEd2008
TechEd2009
threads
Timothy Ng
Todd Apley
Troubleshooting
Tyler Whitney
VB
VB XML Cookbook
VB_Express
VB2005
VB2008
VB2010
VB6_Migration/Interop
Visual Basic
Visual Basic History
Visual Studio
WCF
Web
Windows Phone
Workflow
WPF
XML
Young Joo
Browse by Tags
MSDN Blogs
>
The Visual Basic Team
>
All Tags
>
linq cookbook
Tagged Content List
Blog Post:
LINQ Cookbook, Recipe 12: Calculate the Standard Deviation (Doug Rothaus)
VBTeam
Ingredients: · Visual Studio 2008 (Beta2 or Higher) Categories: LINQ to Objects Introduction: LINQ Cookbook, Recipe 11 showed how you can use LINQ queries to perform calculations on sets of data using a set of standard aggregate functions such as Average , and Sum . In this recipe,...
on
18 Dec 2007
Blog Post:
LINQ Cookbook, Recipe 11: Desktop Search Statistics (Doug Rothaus)
VBTeam
Ingredients: · Visual Studio 2008 (Beta2 or Higher) Categories: LINQ to DataSet Introduction: You can use aggregate functions in LINQ queries to perform calculations on sets of data. Visual Basic includes a set of standard aggregate functions for LINQ queries: All , Any , Average ,...
on
13 Dec 2007
Blog Post:
Visual Basic 2008 Ships!!! (Amanda Silver)
VBTeam
Hooray! Today we’ve finally shipped Visual Studio 2008, previously known as “Orcas”, previously known as some symbol which doesn’t have an ascii representation. We’ve come a long way , but it’s been a great ride. In his blog , Soma mentions many of the flagship features...
on
19 Nov 2007
Blog Post:
LINQ Cookbook, Recipe 10: Pre-compiling Queries for Performance (Doug Rothaus)
VBTeam
Ingredients: · Visual Studio 2008 (Beta2 or Higher) Categories: LINQ to SQL Introduction: As we add cookbook entries, we will include performance improvement tips where appropriate. Here’s a tip that you can use with LINQ to SQL to speed up queries that you will call numerous times...
on
6 Nov 2007
Blog Post:
LINQ Cookbook, Recipe 9: Dynamic Sort Order (Doug Rothaus)
VBTeam
Ingredients: · Visual Studio 2008 (Beta2 or Higher) Categories: LINQ-To-XML Introduction: You can use the Order By clause to easily sort the results of a LINQ query in Visual Basic. A common requirement for sorted data, however, is that the user be able to choose the fields that the...
on
17 Oct 2007
Blog Post:
LINQ Cookbook, Recipe 8: Querying XML Using LINQ (Doug Rothaus)
VBTeam
Ingredients: · Visual Studio 2008 (Beta2 or Higher) Categories: LINQ-To-XML Instructions: · Create a new Console Application in Visual Basic. · Create an RSS document. Add the following code to Sub Main . Dim rss = <? xml version = " 1.0 " ?> < rss version = " 2.0...
on
1 Oct 2007
Blog Post:
LINQ Cookbook, Recipe 7: Selecting Pages of Data from Northwind (Jonathan Aneja)
VBTeam
Ingredients: - Visual Studio 2008 (Beta2 or Higher) - Connection to Northwind database Categories: LINQ-To-Objects, LINQ-To-SQL Instructions: · Create a new Windows Forms project with a Northwind DataContext (for step-by-step instructions on how to do this please see Recipe #6 )...
on
12 Jul 2007
Blog Post:
Linq Cookbook, Recipe 6: Your first Linq Application using Northwind (Kit George)
VBTeam
This example is intended as a ‘primer’ for following recipes (so we don’t repeat the same instructions multiple times). This recipe takes you through everything you need, and assumes only that you've installed Visual Studio (and in so doing, you've installed SQLExpress). Subsequent Northwind based Linq...
on
11 Jul 2007
Blog Post:
LINQ Cookbook, Recipe 5: Concatenating the selected strings from a CheckedListBox (Kit George)
VBTeam
Ingredients: - Visual Studio 2008 (Beta2 or Higher) Categories: LINQ-To-Objects, LINQ and WinForms Instructions: Open Visual Studio 2008, and Click ‘File/New Project’. Create a new Windows Forms Application project From the toolbox, drag a CheckedListBox to the main form...
on
3 Jul 2007
Blog Post:
LINQ Cookbook, Recipe 3: Find all the prime numbers in a given range (Jonathan Aneja)
VBTeam
Ingredients: - Visual Studio 2008 (Beta2 or Higher) Categories: LINQ-To-Objects Instructions: - Open Visual Studio 2008, and Click ‘File/New Project’. Find and double-click the ‘Console Application’ Icon - Add the following code: Module Module1 Sub Main() Dim primes...
on
28 Jun 2007
Blog Post:
LINQ Cookbook, Recipe 4: Find all complex types in a given assembly (Kit George)
VBTeam
Ingredients: - Visual Studio 2008 (Beta2 or Higher) - An assembly which you want to analyze (in this example, we use mscorlib.dll, the assembly which houses String) - A definition for 'Complex Type'. In this instance, a complex type is defined as having more than 10 public methods, of which...
on
27 Jun 2007
Blog Post:
LINQ Cookbook, Recipe 2: Find all capitalized words in a phrase and sort by length (then alphabetically) (Kit George)
VBTeam
Ingredients: - Visual Studio 2008 (Beta2 or Higher) - Some text you want to search Categories: LINQ-To-Objects, LINQ and strings, LINQ and WinForms Instructions: - Open Visual Studio 2008, and Click ‘File/New Project’. Find and double-click the ‘Windows Forms Application’ Icon ...
on
22 Jun 2007
Blog Post:
LINQ Cookbook, Recipe 1: Change the font for all labels on a windows form (Kit George)
VBTeam
Folks, we’re gonna start a ‘cookbook’ of LINQ entries, which we’ll be building over time. This is just meant to be a series of solutions to specific scenarios, that the team comes across when writing code and using queries. I can't think of a better way to communicate everything you might use LINQ for...
on
22 Jun 2007
Page 1 of 1 (13 items)