Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 0 additions & 33 deletions .vscode/settings.json

This file was deleted.

60 changes: 0 additions & 60 deletions .vscode/tasks.json

This file was deleted.

18 changes: 18 additions & 0 deletions .zed/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[
{
"label": "restore",
"command": "dotnet tool restore && dotnet restore",
},
{
"label": "build",
"command": "dotnet build",
},
{
"label": "test",
"command": "dotnet test",
},
{
"label": "format",
"command": "dotnet csharpier format .",
},
]
4 changes: 2 additions & 2 deletions TODOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

## Core Library Gaps (vs TanStack Query)

- [ ] **Infinite/Paginated Queries** — `IInfiniteQuery` equivalent with fetch-next-page / fetch-previous-page support
- [x] **Infinite/Paginated Queries** — `IInfiniteQuery` equivalent with fetch-next-page / fetch-previous-page support
- [ ] Initial data

## Blazor-Specific Gaps

Expand All @@ -11,4 +12,3 @@
## .NET Ecosystem Integration

- [ ] **MVVM Integration (`DotNetQuery.Mvvm`)** — `QueryViewModel<TArgs, TData>` wrapping `IQuery<TArgs, TData>` for MVVM-based UI frameworks (MAUI, WPF, UNO Platform); implements `INotifyPropertyChanged` and exposes bindable properties (`IsLoading`, `IsSuccess`, `IsFailure`, `Data`, `Error`); thread marshaling handled per-platform (`MainThread` / `Dispatcher` / `DispatcherQueue`)

8 changes: 8 additions & 0 deletions codebook.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
words = [
"Blazor",
"MVVM",
"cref",
"paramref",
"typeparam",
"typeparamref",
]
Loading