Login or Sign Up to become a member!
LessThanDot Sit Logo

LessThanDot

All Blogs

Less Than Dot is a community of passionate IT professionals and enthusiasts dedicated to sharing technical knowledge, experience, and assistance. Inside you will find reference materials, interesting technical discussions, and expert tips and commentary. Once you register for an account you will have immediate access to the forums and all past articles and commentaries.

LTD Social Sitings

Lessthandot twitter Lessthandot Linkedin Lessthandot friendfeed Lessthandot facebook Lessthandot rss

Note: Watch for social icons on posts by your favorite authors to follow their postings on these and other social sites.

Your profile

    Search

    XML Feeds

    Google Ads

    Tags: linq

    comments

    Copying Buckets With The Amazon S3 API

    by Alex Ullrich on May 29, 2012 in categories Server Programming, ASP.NET. Article views: 3534 views

    One of the projects I have been working on is a system for managing content on our network of websites. One of our requirements is that changes don't take effect immediately, but on a separate preview network where our customer can look to see that her…

    Read More...
    comments

    From time to time I answer a few questions on Stackoverflow, mostly because you can learn a lot from someone else's problems and it makes you think. This time the problem was simple and it seems like most people revert to a for loop loop to solve it. While using linq is so much shorter easier to read.

    Read More...
    comments

    I think this was the first time I ever used the Select extension method. And it gave me an unexpected result.

    First I created a Person Class.

    vbnet Sample Code (See Article for Rest)
    Read More...
    comments

    I'm using NHibernate version 2.1.2 GA and the 2.1.2 Linq version that goes with it.

    And I like to state that I'm not complaining, but perhaps I can save some people from losing too much time while trying this. You still have plenty of other options if Linq does not work in your situation.

    So let's say I have this Person Object

    vbnet Sample Code (See Article for Rest)
    Read More...
    comments

    linq to nhibernate and subqueries.

    by Christiaan Baes (chrissie1) on Apr 13, 2010 in categories Microsoft Technologies. Article views: 3064 views

    Ok, time to try the linq to nhibernate subquery possibilities.

    Let's say I have a object called TexCase that has a collection of Tags Of Type Tag. And the Class Tag has a property called Tag of type string.

    So I have this HQL query.

    vbnet Sample Code (See Article for Rest)
    Read More...
    comments

    Linq to nHibernate

    by Christiaan Baes (chrissie1) on Apr 13, 2010 in categories Microsoft Technologies. Article views: 2055 views

    Today I thought it would be good to try some Linq to nHibernate while I was waiting for VS2010 to finish downloading.

    First thing I had to do was download NHibernate 2.1.2 GA and the Linq provider that goes with it.

    I was using 2.0.1 up until now. So I had to add a

    Read More...
    comments

    VB.net checking the performance of Linq and Max

    by Christiaan Baes (chrissie1) on May 02, 2009 in categories Microsoft Technologies. Article views: 1729 views

    Last week I was asked to create a normalisation routine for the Msp spectra that my application uses. No worry if you don't know what Msp is. The thing is that it needed to find the maximum value in a collection of values and then do a calculation with that number over the other values in that collection.

    First the value object.

    vbnet Sample Code (See Article for Rest)
    Read More...
    comments

    In an ICollection(of T) you have a contains method to see if your collection has the requested element in it. But if you want to look for Multiple elements, you have to resort to making predicates (and we all know how ugly those get).

    So why didn’t MS implement ContainsAny (OR) and/or ContainsAll (AND). I couldn’t think of a good reason, so I made them myself. They are perhaps a bit over easy and not very performance friendly but they work.

    Here are the extension methods.

    vbnet Sample Code (See Article for Rest)
    Read More...
    comments

    VB.Net: Linq and I keep forgetting

    by Christiaan Baes (chrissie1) on Sep 09, 2008 in categories Microsoft Technologies. Article views: 3195 views

    Problem

    I keep forgetting that it needs the System.linq namespace to work. And I keep forgetting that it is not set by default on my projects. I try not to overuse linq but sometimes it is easy.

    So what happened?

    I was trying this:

    vbnet Sample Code (See Article for Rest)
    Read More...
    comments

    Adam Machanic created an item on connect explaining how LINQ to SQL queries involving strings cause SQL Server procedure cache bloat

    If an application is using LINQ to SQL and the queries involve the use of strings that can be highly variable in length, the SQL Server procedure cache will become bloated with one version of the query for every possible string length. For example, consider the following very simple queries created against the Person.AddressTypes table in the AdventureWorks2008 database:

    Read More...

    :: Next >>