Search Results for

    System.Linq.Dynamic.Core

    This is a .NET Core / Standard port of the Microsoft assembly for the .Net 4.0 Dynamic language functionality.

    Overview

    With this library it's possible to write Dynamic LINQ queries (string based) on an IQueryable:

    var query = db.Customers
        .Where("City == @0 and Orders.Count >= @1", "London", 10)
        .OrderBy("CompanyName")
        .Select("new(CompanyName as Name, Phone)");
    

    API Documentation

    See this link.

    • Improve this Doc
    In This Article
    Back to top Generated by DocFX