SeekKit.Core
2.1.0
dotnet add package SeekKit.Core --version 2.1.0
NuGet\Install-Package SeekKit.Core -Version 2.1.0
<PackageReference Include="SeekKit.Core" Version="2.1.0" />
<PackageVersion Include="SeekKit.Core" Version="2.1.0" />
<PackageReference Include="SeekKit.Core" />
paket add SeekKit.Core --version 2.1.0
#r "nuget: SeekKit.Core, 2.1.0"
#:package SeekKit.Core@2.1.0
#addin nuget:?package=SeekKit.Core&version=2.1.0
#tool nuget:?package=SeekKit.Core&version=2.1.0
SeekKit.Core
Provider-agnostic core for SeekKit cursor (keyset) pagination. You normally don't install this package directly — it comes as a dependency of a provider package:
| Provider | Package |
|---|---|
| Entity Framework Core | SeekKit.EntityFramework |
| MongoDB | SeekKit.MongoDB |
What's inside
- Shared contracts —
SeekResult<T>,SeekRequest,SeekData,SeekDirection,PageMetadata. Because every provider package shares these types, a service can paginate SQL and MongoDB data behind one API shape. - Opaque token serialization — URL-safe Base64 tokens with an optional
HMAC-SHA256-signed serializer (
config.UseHmacSigning(key)). - Type converters — stable string round-tripping for all primitives,
Guid, date/time types, and nullable variants; extensible viaTypeConverter<T>. - LINQ keyset strategies — provider-neutral expression building, including the OR-expanded predicate strategy that works on any LINQ provider.
- Push-down projection building blocks — the paging algorithm, cursor-value
reflection, and projected-builder base class backing both providers'
Select<TResult>(deferring a join/projection until after the page is limited).
Links
- Documentation: https://github.com/lttruc1402/SeekKit.EntityFramework
- Changelog: https://github.com/lttruc1402/SeekKit.EntityFramework/blob/master/CHANGELOG.md
Licensed under the MIT License.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.1 is compatible. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 5.0.0)
- System.Collections.Immutable (>= 6.0.0)
- System.Text.Json (>= 6.0.7)
-
net10.0
-
net8.0
-
net9.0
NuGet packages (2)
Showing the top 2 NuGet packages that depend on SeekKit.Core:
| Package | Downloads |
|---|---|
|
SeekKit.EntityFramework
High-performance cursor (keyset) pagination for Entity Framework Core. Constant-time page navigation with opaque tokens, bidirectional paging, and database-tuned query strategies for SQL Server, PostgreSQL, MySQL, Oracle, and SQLite. |
|
|
SeekKit.MongoDB
High-performance cursor (keyset) pagination for MongoDB. Constant-time page navigation with opaque, bidirectional tokens over the MongoDB .NET driver's LINQ provider. Shares its token format and contracts with SeekKit.EntityFramework via SeekKit.Core. |
GitHub repositories
This package is not used by any popular GitHub repositories.