Skip to content

Commit

Permalink
Add PackageReadme (#730)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefH committed Aug 6, 2023
1 parent 9737bcf commit 381f0a0
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
22 changes: 22 additions & 0 deletions PackageReadme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
## 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`:
``` c#
var query = db.Customers
.Where("City == @0 and Orders.Count >= @1", "London", 10)
.OrderBy("CompanyName")
.Select("new(CompanyName as Name, Phone)");
```

### Useful links

- [Website](https://dynamic-linq.net)
- [Documentation](https://dynamic-linq.net/overview)
- [Online examples](https://dynamic-linq.net/online-examples)


### Library Powered By

This library is powered by [Entity Framework Extensions](https://entityframework-extensions.net/?z=github&y=system.linq.dynamic.core)
1 change: 1 addition & 0 deletions System.Linq.Dynamic.Core.sln
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
Generate-ReleaseNotes.bat = Generate-ReleaseNotes.bat
LICENSE = LICENSE
NuGet.txt = NuGet.txt
PackageReadme.md = PackageReadme.md
README.md = README.md
report\run-coverlet-local.cmd = report\run-coverlet-local.cmd
version.xml = version.xml
Expand Down
2 changes: 2 additions & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<LangVersion>11</LangVersion>
<Nullable>enable</Nullable>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>PackageReadme.md</PackageReadmeFile>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://dynamic-linq.net/</PackageProjectUrl>
<PackageReleaseNotes>Bugfixes and new Features. For details see CHANGELOG.md</PackageReleaseNotes>
Expand All @@ -22,5 +23,6 @@

<ItemGroup>
<None Include="../../resources/logo.png" Pack="true" PackagePath="" />
<None Include="../../PackageReadme.md" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>

0 comments on commit 381f0a0

Please sign in to comment.