Skip to content

Commit 74ce0c6

Browse files
committed
Readme updated. New graphical assets introduced.
1 parent f1242c4 commit 74ce0c6

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
1-
# QueryLink
2-
*from **ByteAether***
1+
# ![QueryLink from ByteAether](assets/header.png)
32

4-
[![NuGet Version](https://img.shields.io/nuget/v/ByteAether.QueryLink)](https://www.nuget.org/packages/ByteAether.QueryLink/)
5-
[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/ByteAether/QueryLink/build-and-test.yml)](https://github.com/ByteAether/QueryLink/actions/workflows/build-and-test.yml)
3+
[![License](https://img.shields.io/github/license/ByteAether/QueryLink?logo=github&label=License)](https://github.com/ByteAether/QueryLink/blob/main/LICENSE)
4+
[![NuGet Version](https://img.shields.io/nuget/v/ByteAether.QueryLink?logo=nuget&label=Version)](https://www.nuget.org/packages/ByteAether.QueryLink/)
5+
[![NuGet Downloads](https://img.shields.io/nuget/dt/ByteAether.QueryLink?logo=nuget&label=Downloads)](https://www.nuget.org/packages/ByteAether.QueryLink/)
6+
[![GitHub Build Status](https://img.shields.io/github/actions/workflow/status/ByteAether/QueryLink/build-and-test.yml?logo=github&label=Build%20%26%20Test)](https://github.com/ByteAether/QueryLink/actions/workflows/build-and-test.yml)
67

8+
<img align="right" width="100px" src="assets/logo.png" />
79

810
QueryLink is a NuGet package designed to simplify the integration of UI components such as datagrids and datatables with backend `IQueryable`-based data sources. This library provides a seamless way to link these two parts of a system with minimal code, making it easier to manage filters and sorting operations.
911

1012
## Features
1113

14+
![.NET 8.0](https://img.shields.io/badge/.NET-8.0-brightgreen)
15+
![.NET 6.0](https://img.shields.io/badge/.NET-6.0-brightgreen)
16+
![.NET Standard 2.1](https://img.shields.io/badge/.NET-Standard_2.1-yellow)
17+
1218
- **Filter Definitions:** Define filters with various operators to refine your data queries.
1319
- **Order Definitions:** Specify sorting criteria to order your data.
1420
- **Overrides:** Customize filter and order operations with expression-based overrides.
@@ -17,12 +23,14 @@ QueryLink is a NuGet package designed to simplify the integration of UI componen
1723

1824
## Installation
1925

20-
You can install the package via NuGet:
26+
Install the latest stable package via NuGet:
2127

2228
```sh
2329
dotnet add package ByteAether.QueryLink
2430
```
2531

32+
Use the `--version` option to specify a [preview version](https://www.nuget.org/packages/ByteAether.QueryLink/absoluteLatest) to install.
33+
2634
## Usage
2735

2836
### Definitions

assets/header.png

39.9 KB
Loading

assets/logo.png

57 KB
Loading

src/ByteAether.QueryLink/ByteAether.QueryLink.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<PackageTags>querylink;datagrid;datatable;datasource;queryable;querystring;filter;sort;linq</PackageTags>
2525
<PackageReadmeFile>README.md</PackageReadmeFile>
2626
<PackageLicenseFile>LICENSE</PackageLicenseFile>
27+
<PackageIcon>logo.png</PackageIcon>
2728
</PropertyGroup>
2829

2930
<ItemGroup>
@@ -35,6 +36,10 @@
3536
<Pack>True</Pack>
3637
<PackagePath>\</PackagePath>
3738
</None>
39+
<None Include="..\..\assets\logo.png">
40+
<Pack>True</Pack>
41+
<PackagePath>\</PackagePath>
42+
</None>
3843
</ItemGroup>
3944

4045
</Project>

0 commit comments

Comments
 (0)