linq

TwitterFacebook
Get flash to fully experience Pearltrees
http://weblogs.asp.net/jalpeshpvadgama/archive/2010/06/19/zip-operator-in-linq-with-net-4-0.aspx Microsoft .NET framework 4.0 is having many features that make developers life very easy. Its also provides some enhancement to Linq also. I just found a great operator called Zip which merge the sequence of two entities.

Zip operator in Linq with .NET 4.0 - DotNetJaps

C# 4.0 in a Nutshell - LINQBridge

LINQBridge You might already have discovered that LINQ is addictive : once you're accustomed to solving problems through slick functional queries, it really hurts being forced back to the imperative style of C# 2.0! LINQ's query operators are implemented from .NET Framework 3.5. And here lies a difficulty: your clients might have only Framework 2.0 installed on their machines . http://www.albahari.com/nutshell/linqbridge.aspx
http://zimmergren.net/technical/sp-2010-getting-started-with-linq-to-sharepoint-in-sharepoint-2010

SP 2010: Getting started with LINQ to SharePoint in SharePoint 2010 - Tobias Zimmergren's thoughts on development

Author: Tobias Zimmergren http://www.zimmergren.net | http://www.tozit.com | @zimmergren In SharePoint 2010 you now have the ability to use LINQ syntax to fetch items from your lists instead of using the "traditional" approach of CAML queries. (Including SPSiteDataQuery and SPQuery objects) In this article I will give you a brief introduction to how you can get started using LINQ queries in SharePoint, also known as LINQ to SharePoint .
This is the last of my posts on LINQ before switching over to Beta2; I’m playing catch-up but be aware that some things will have changed. I will post any changes for Beta 2 to both this and Being Ignorant in LINQ to SQL as time permits. What are Specifications? Specification is a design pattern authored by Martin Fowler and Eric Evans. If you are not familiar with specifications then you can read more about them in Eric Evans book Domain Driven Design, or just read this comprehensive paper . If you are not sure what Specifications are, you might want to read that before you read this.

Specifications in C# 3.0 - Windows Live

http://ianhammondcooper.wordpress.com/2007/08/05/specifications-in-c-3-0/
http://blogs.msdn.com/b/kaevans/archive/2009/03/10/calling-sharepoint-lists-web-service-using-wcf.aspx WCF makes it easy to call the SharePoint web services using WCF. In this post, I’ll show how to call the Lists.asmx web service and show the few things you need to take into account. Creating the Proxy

Kirk Evans Blog : Calling SharePoint Lists Web Service Using WCF

http://dotnetslackers.com/articles/csharp/LINQProviderBasics.aspx

LINQ provider basics

Learn how to create custom LINQ providers. Introduction LINQ (Language Integrated Query) works as a middle tier between data store and the language environment. From a developer's point of view, it is just a new pattern for querying data from multiple data structures directly in the IDE.
Batch deletion in the O/R Mapping frameworks is always depressing. We need to query all the entities we want to delete from the database, pass them to the DeleteOnSubmit or DeleteAllOnSubmit methods of DataContext, and finally invoke SubmitChanges to delete the records form database. In this case, we will cost an additional query and send lots of "DELETE" commands to database. How wasteful! http://weblogs.asp.net/jeffreyzhao/archive/2008/03/05/linq-to-sql-extension-batch-deletion-by-lambda-expression.aspx

LINQ to SQL Extension: Batch Deletion with Lamb...

I posted an article the other day showing you how to exploit the query capabilities of LINQ to do reflection over the attributes on a C# class. I want to show you how to exploit some of the extension methods in System.Query to make the code even cleaner. I used a method called Members that got all of the members in order of member type (i.e. fields first, properties next and so on). The code looked like this: public static IEnumerable<MemberInfo>Members( this Type t) { foreach (FieldInfo fi in t.GetFields()) yield return fi; foreach (PropertyInfo pi in t.GetProperties()) yield return pi; foreach (MethodInfo mi in t.GetMethods()) yield return mi; foreach (EventInfo ei in t.GetEvents()) yield return ei; } I needed to split the queries into each of the types we required in order to get elements ordered by type.

LINQ &amp; Reflection in C# 3.0 « The Wandering Gli...

http://aabs.wordpress.com/2006/11/13/linq-reflection-in-c-30/
http://blogs.msdn.com/b/davidebb/archive/2008/03/06/dynamic-data-at-mix-and-upcoming-changes.aspx Yesterday, I gave a talk on ASP.NET Dynamic Data at the MIX 2008 conference. It was a full room, and it was great to see the interest for the technology. What's nice about MIX is that they are making all talks available online within 24 hours.

David Ebbo&#039;s ASP.NET blog : Dynamic Data at MIX...

http://weblogs.asp.net/bryansampica/archive/2008/05/07/solving-linq-s-n-tier-issues.aspx

Solving LINQ&#039;s N-Tier Issues - Bryan Sampica

Ok, so maybe solving is somewhat of a misnomer, but we certainly can combat them with strength and conviction. A little background on the subject first; LINQ has proven to be somewhat of a booger when attempting to work with it in a streamlined development environment when incorporating any sort of N-Tier pattern. Why you ask should it be a problem...the common answer I've heard many many times is, why should it be any different? You have at the essence of it some pretty simple logical and physical layer guidelines right? It's well known in the industry at this point to create N-Layer app's to solve things like SOC (separation of concerns) and physical or network boundaries.
Parallel LINQ Running Queries On Multi-Core Processors Joe Duffy and Ed Essey THis article is based on the Parallel FX library, which is currently in development. All information herein is subject to change. Multi-core processors are here.

Parallel LINQ: Running Queries On Multi-Core Pr...

10 Tips to Improve your LINQ to SQL Application...

Hey there, back again. In my first post about LINQ I tried to provide a brief(okay, bit detailed) introduction for those who want to get involved with LINQ to SQL. In that post I promised to write about a basic integration of WCF and LINQ to SQL working together, but this is not that post. Since LINQ to SQL is a code generator and an ORM and it offers a lot of things, it is normal to be suspicious about performance of it. These are right up to a certain point as LINQ comes with its own penalties.
A couple weeks ago, I read the article, LINQ to SQL Extension: Batch Deletion with Lambda Expression by Jeffrey Zhao. In case you didn't read the article, it discusses the downside of most O/R Mapping frameworks when it comes to multiple updates or deletes. He states the fact that a SQL statement for each row flagged as update/delete in the entity set is created. I went about implementing something similar to what Jeffrey envisioned and I'll explain some of the hurdles I had to overcome to achieve it.

Batch Updates and Deletes with LINQ to SQL

27th March 2009. It's now a year since I wrote this post. Thanks to some comments by Janus2007 I've realised that it needs updating.

Using the IRepository pattern with L...

Ben Hall&#039;s Blog: Obtaining table metadata using...

One of the posts on the MSDN forum asked how to obtain the type length of a column in the table using Linq, this post will just explain how to obtain this information and some information on the MappingSource object. When linq does the mappings of database to objects, it transforms the DBType (NVarChar) into a CLR Type (String) which means when you are accessing the objects in code, you are accessing them as .Net types hence no simply way to get the underlying DBType. One way would be to look the information up in the mappings file or the attribute but Dinesh Kulkarni (PM) pointed out an more directly way, in an indirect way. The DataContext has a property which allows access to all of the mapping information, this property is Mapping.MappingSource. The MappingSource object has a property GetModel() which requires the type of the DataContext which contains the table as a parameter.