Welcome to Sol 3 Sign in | Join | Help

ASPInsiders

Aggregation of ASPInsiders and Microsoft ASP.NET team member blogs.

Browse by Tags

All Tags » LINQ   (RSS)
The Weekly Source Code 51 - Asynchronous Database Access and LINQ to SQL Fun
You can learn a lot by reading other people's source code. That's the idea behind this series, " The Weekly Source Code ." You can certainly become a better programmer by writing code but I think good writers become better by reading as much Read More...
Small LINQ Trick for Converting List<String> to String Text List
  Here is a shorthand way for converting a list of strings defined as follows: List<string> strings = new List<string> [...]

This site is a resource for asp.net web programming. It has examples by Peter Kellner of techniques for high performance programming
Linq2Sql: How to join tables on more than one column
You can join two tables in Linq2Sql by using an anonymous type to specify the join.  var r =     from o in db.Orders     join p in db.Products on o.ProductId equals p.ProductId     join pu in db.ProductUsers Read More...
How to get an indexed item of an IEnumerable object (Linq)
If you have an IEnumerable<T> collection of some objects T and you need to get a particular item out of that collection, you cannot use the standard indexing that you would normally use with brackets ([index]).  If you try you will get an error Read More...
Adding A Sessions Page That Includes a Query Parameter In Silverlight VS2010 Beta2 (Article 6 of 7)
  Title Of Each Article Video Included With Each Post Part 1 Introduction To RIA Services In Silverlight (This Article) 7 Minutes Part 2 Basic RIA Services And DataGrid With  VS 2010 Tooling 14...

This site is a resource for asp.net web programming. It has examples by Peter Kellner of techniques for high performance programming
Most Amazing ReFactor Using ReSharper EAP 5.0 I’ve Seen!
  This one is just to amazing to not blog about.  I’ve been a die heart ReSharper user for quite a while and recently have started using their early access versions.  Primarily...

This site is a resource for asp.net web programming. It has examples by Peter Kellner of techniques for high performance programming
Events This Week – November 9th, 2009
Here are the events listed in Community Megaphone for the next week (or so) for the Mid-Atlantic area, as well as webcasts of interest…this list includes events imported from the UGSS event calendar , and all events entered in Community Megaphone are Read More...
Converting From System.Data.Linq.Binary to String and Back
  Just a quick post in case anyone is wasting 10 minutes figuring out how to do this.  For me, this came up because in Sql Server 2008, NVARCHAR(MAX) is 4000 characters and I needed...

This site is a resource for asp.net web programming. It has examples by Peter Kellner of techniques for high performance programming
Using LINQ to Convert an Array Into a Generic List with C#
  This is just going to be a short post, but I bet it’s something I do a large number of times so I thought I’d blog it.  Say you get back from something like a web service an array of...

This site is a resource for asp.net web programming. It has examples by Peter Kellner of techniques for high performance programming
LINQPad Help For Creating Nasty Group by Query in Native SQL
  I often speak very highly of LINQ and also LINQPad.  This morning, I was struggling with some sql that would let me do a count by DateTime while stripping out the time portion. ...

This site is a resource for asp.net web programming. It has examples by Peter Kellner of techniques for high performance programming
Some Really Cool LINQ to Help Performance and Show Line Thickness
  I’ve done a bunch of Lat/Long type mapping programs over the years and one of the problems always ends up around performance.  A common problem is that you keep redrawing the same line...

This site is a resource for asp.net web programming. It has examples by Peter Kellner of techniques for high performance programming
Using LINQ2SQL, Use Group By To Get List of Top Occuring Values
  So, I’m really enjoying using LINQ and specifically LINQ2SQL.  I’ve got a current problem where I want to get from a long list of loads (potentially hundreds per day), a short list of...

This site is a resource for asp.net web programming. It has examples by Peter Kellner of techniques for high performance programming
Events this Week – August 24th, 2009
Here are the events listed in Community Megaphone for the next week (or so) for the Mid-Atlantic area, as well as webcasts of interest…this list includes events imported from the UGSS event calendar , and all events entered in Community Megaphone are Read More...
Events This Week – August 17th, 2009
Here are the events listed in Community Megaphone for the next week (or so) for the Mid-Atlantic area, as well as webcasts of interest…this list includes events imported from the UGSS event calendar , and all events entered in Community Megaphone are Read More...
Events this Week – August 4th, 2009
Here are the events listed in Community Megaphone for the next week (or so) for the Mid-Atlantic area, as well as webcasts of interest…this list includes events imported from the UGSS event calendar , and all events entered in Community Megaphone are Read More...
More Posts Next page »