You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
12
12
@@ -29,7 +29,7 @@ If you feel that this solution has provided you some value, please consider [buy
29
29
30
30
[![Buy me a coffee][BuyMeACoffeeButton]][BuyMeACoffee]
31
31
32
-
Your ⭐ on [this repository](https://github.com/yv989c/BlazarTech.QueryableValues) also helps! Thanks! 🖖🙂
32
+
Your ⭐ on [this repository][Repository] also helps! Thanks! 🖖🙂
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.
8
8
@@ -25,7 +25,7 @@ If you feel that this solution has provided you some value, please consider [buy
25
25
26
26
[![Buy me a coffee][BuyMeACoffeeButton]][BuyMeACoffee]
27
27
28
-
Your ⭐ on [this repository](https://github.com/yv989c/BlazarTech.QueryableValues) also helps! Thanks! 🖖🙂
28
+
Your ⭐ on [this repository][Repository] also helps! Thanks! 🖖🙂
29
29
30
30
# Getting Started
31
31
@@ -171,7 +171,7 @@ var myQuery =
171
171
> :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.
172
172
173
173
## 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].
0 commit comments