Hacker News new | past | comments | ask | show | jobs | submit login

Very similar at the entity level, but C#'s LINQ interface to the generate the query is unique as you get fully typed queries in C# that are translated to the underlying DB.

So example:

    database
        .Users
        .Where(u => u.ActivatedUtc < ...) // Filter
        .Select(u => new {...}) // Project



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: