Skip to content

Commit bf8aeb0

Browse files
committed
docs: reorg
1 parent b6331eb commit bf8aeb0

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
# QueryableValues
66

7-
[![Nuget Downloads](https://badgen.net/nuget/dt/BlazarTech.QueryableValues.SqlServer?icon=nuget)][NuGet Package]
8-
[![GitHub Stars](https://badgen.net/github/stars/yv989c/BlazarTech.QueryableValues?icon=github)](https://github.com/yv989c/BlazarTech.QueryableValues/stargazers)
97
[![MIT License](https://badgen.net/badge/license/MIT/blue)](https://github.com/yv989c/BlazarTech.QueryableValues/blob/main/LICENSE.md)
8+
[![GitHub Stars](https://badgen.net/github/stars/yv989c/BlazarTech.QueryableValues?icon=github)][Repository]
9+
[![Nuget Downloads](https://badgen.net/nuget/dt/BlazarTech.QueryableValues.SqlServer?icon=nuget)][NuGet Package]
1010

1111
This library allows you to efficiently compose an [IEnumerable<T>] in your [Entity Framework Core] queries when using the [SQL Server Database Provider]. This is accomplished by using the `AsQueryableValues` extension method available on the [DbContext] class. Everything is evaluated on the server with a single round trip, in a way that preserves the query's [execution plan], even when the values behind the [IEnumerable<T>] are changed on subsequent executions.
1212

@@ -29,7 +29,7 @@ If you feel that this solution has provided you some value, please consider [buy
2929

3030
[![Buy me a coffee][BuyMeACoffeeButton]][BuyMeACoffee]
3131

32-
Your ⭐ on [this repository](https://github.com/yv989c/BlazarTech.QueryableValues) also helps! Thanks! 🖖🙂
32+
Your ⭐ on [this repository][Repository] also helps! Thanks! 🖖🙂
3333

3434
# Getting Started
3535

@@ -436,6 +436,7 @@ PRs are welcome! 🙂
436436
[String]: https://docs.microsoft.com/en-us/dotnet/api/system.string
437437
[BuyMeACoffee]: https://www.buymeacoffee.com/yv989c
438438
[BuyMeACoffeeButton]: /docs/images/bmc-48.svg
439+
[Repository]: https://github.com/yv989c/BlazarTech.QueryableValues
439440

440441
[benchmarks]: /benchmarks/QueryableValues.SqlServer.Benchmarks
441442
[BenchmarksInt32]: /docs/images/benchmarks/int32-v6.3.0.png

docs/README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# QueryableValues
22

3-
[![Nuget Downloads](https://badgen.net/nuget/dt/BlazarTech.QueryableValues.SqlServer?icon=nuget)][NuGet Package]
4-
[![GitHub Stars](https://badgen.net/github/stars/yv989c/BlazarTech.QueryableValues?icon=github)](https://github.com/yv989c/BlazarTech.QueryableValues/stargazers)
53
[![MIT License](https://badgen.net/badge/license/MIT/blue)](https://github.com/yv989c/BlazarTech.QueryableValues/blob/main/LICENSE.md)
4+
[![GitHub Stars](https://badgen.net/github/stars/yv989c/BlazarTech.QueryableValues?icon=github)][Repository]
5+
[![Nuget Downloads](https://badgen.net/nuget/dt/BlazarTech.QueryableValues.SqlServer?icon=nuget)][NuGet Package]
66

77
This library allows you to efficiently compose an [IEnumerable<T>] in your [Entity Framework Core] queries when using the [SQL Server Database Provider]. This is accomplished by using the `AsQueryableValues` extension method available on the [DbContext] class. Everything is evaluated on the server with a single round trip, in a way that preserves the query's [execution plan], even when the values behind the [IEnumerable<T>] are changed on subsequent executions.
88

@@ -25,7 +25,7 @@ If you feel that this solution has provided you some value, please consider [buy
2525

2626
[![Buy me a coffee][BuyMeACoffeeButton]][BuyMeACoffee]
2727

28-
Your ⭐ on [this repository](https://github.com/yv989c/BlazarTech.QueryableValues) also helps! Thanks! 🖖🙂
28+
Your ⭐ on [this repository][Repository] also helps! Thanks! 🖖🙂
2929

3030
# Getting Started
3131

@@ -171,7 +171,7 @@ var myQuery =
171171
> :warning: There is a limit of up to 10 properties for any given simple type (e.g. cannot have more than 10 [Int32] properties). Exceeding that limit will cause an exception and may also suggest that you should rethink your strategy.
172172
173173
## Do You Want To Know More? 📚
174-
Please take a look at the [repository](https://github.com/yv989c/BlazarTech.QueryableValues).
174+
Please take a look at the [repository][Repository].
175175

176176

177177
[Entity Framework Core]: https://docs.microsoft.com/en-us/ef/core/
@@ -203,3 +203,4 @@ Please take a look at the [repository](https://github.com/yv989c/BlazarTech.Quer
203203
[String]: https://docs.microsoft.com/en-us/dotnet/api/system.string
204204
[BuyMeACoffee]: https://www.buymeacoffee.com/yv989c
205205
[BuyMeACoffeeButton]: https://raw.githubusercontent.com/yv989c/BlazarTech.QueryableValues/develop/docs/images/bmc-48.svg
206+
[Repository]: https://github.com/yv989c/BlazarTech.QueryableValues

0 commit comments

Comments
 (0)