Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 759 Bytes

PackageReadme.md

File metadata and controls

22 lines (16 loc) · 759 Bytes

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)");

Useful links

Library Powered By

This library is powered by Entity Framework Extensions