Skip to content

Commit 9b4e459

Browse files
author
fabien.menager
committed
Fix website urls
1 parent cf58af4 commit 9b4e459

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Flexible projection magic for EF Core
1414
1. Install the package from [NuGet](https://www.nuget.org/packages/EntityFrameworkCore.Projectables/)
1515
2. Enable Projectables in your DbContext by adding: `dbContextOptions.UseProjectables()`
1616
3. Mark properties, methods, or constructors with `[Projectable]`.
17-
4. Read the **[documentation](https://projectables.github.io)** for guides, reference, and recipes.
17+
4. Read the **[documentation](https://efnext.github.io)** for guides, reference, and recipes.
1818

1919
### Example
2020

@@ -50,27 +50,27 @@ There are two components: a **Roslyn source generator** that emits companion `Ex
5050

5151
## Features (v6.x+)
5252

53-
| Feature | Docs |
54-
|---|---|
55-
| Properties & methods | [Guide →](https://projectables.github.io/guide/projectable-properties) |
56-
| Extension methods | [Guide →](https://projectables.github.io/guide/extension-methods) |
57-
| Constructor projections | [Guide →](https://projectables.github.io/guide/projectable-constructors) |
58-
| Method overloads | Fully supported |
59-
| Pattern matching (`switch`, `is`) | [Reference →](https://projectables.github.io/reference/pattern-matching) |
60-
| Block-bodied members (experimental) | [Advanced →](https://projectables.github.io/advanced/block-bodied-members) |
61-
| Null-conditional rewriting | [Reference →](https://projectables.github.io/reference/null-conditional-rewrite) |
62-
| Enum method expansion | [Reference →](https://projectables.github.io/reference/expand-enum-methods) |
63-
| `UseMemberBody` | [Reference →](https://projectables.github.io/reference/use-member-body) |
64-
| Roslyn analyzers & code fixes (EFP0001–EFP0012) | [Reference →](https://projectables.github.io/reference/diagnostics) |
65-
| Limited/Full compatibility mode | [Reference →](https://projectables.github.io/reference/compatibility-mode) |
53+
| Feature | Docs |
54+
|-------------------------------------------------|----------------------------------------------------------------------------|
55+
| Properties & methods | [Guide →](https://efnext.github.io/guide/projectable-properties) |
56+
| Extension methods | [Guide →](https://efnext.github.io/guide/extension-methods) |
57+
| Constructor projections | [Guide →](https://efnext.github.io/guide/projectable-constructors) |
58+
| Method overloads | Fully supported |
59+
| Pattern matching (`switch`, `is`) | [Reference →](https://efnext.github.io/reference/pattern-matching) |
60+
| Block-bodied members (experimental) | [Advanced →](https://efnext.github.io/advanced/block-bodied-members) |
61+
| Null-conditional rewriting | [Reference →](https://efnext.github.io/reference/null-conditional-rewrite) |
62+
| Enum method expansion | [Reference →](https://efnext.github.io/reference/expand-enum-methods) |
63+
| `UseMemberBody` | [Reference →](https://efnext.github.io/reference/use-member-body) |
64+
| Roslyn analyzers & code fixes (EFP0001–EFP0012) | [Reference →](https://efnext.github.io/reference/diagnostics) |
65+
| Limited/Full compatibility mode | [Reference →](https://efnext.github.io/reference/compatibility-mode) |
6666

6767
## FAQ
6868

6969
#### Is this specific to a database provider?
7070
No. The interceptor hooks into EF Core's query compilation pipeline before any provider-specific translation, so it works with SQL Server, PostgreSQL, SQLite, Cosmos DB, and any other EF Core provider.
7171

7272
#### Are there performance implications?
73-
Two compatibility modes are available: **Full** (default) expands every query before handing it to EF Core; **Limited** expands once and caches the result. Limited mode often outperforms plain EF Core on repeated queries. See the [Compatibility Mode docs](https://projectables.github.io/reference/compatibility-mode).
73+
Two compatibility modes are available: **Full** (default) expands every query before handing it to EF Core; **Limited** expands once and caches the result. Limited mode often outperforms plain EF Core on repeated queries. See the [Compatibility Mode docs](https://efnext.github.io/reference/compatibility-mode).
7474

7575
#### Can I compose projectables?
7676
Yes — a `[Projectable]` member can call other `[Projectable]` members. They are recursively inlined into the final SQL.

docs/.vitepress/config.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ const umamiScript: HeadConfig = ["script", {
88

99
const baseHeaders: HeadConfig[] = [
1010
['link', { rel: 'icon', type: 'image/svg+xml', href: '/logo.svg' }],
11-
['meta', { property: 'og:image', content: 'https://projectables.github.io/social.svg' }],
11+
['meta', { property: 'og:image', content: 'https://efnext.github.io/social.svg' }],
1212
['meta', { property: 'og:type', content: 'website' }],
1313
['meta', { name: 'twitter:card', content: 'summary_large_image' }],
14-
['meta', { name: 'twitter:image', content: 'https://projectables.github.io/social.svg' }],
14+
['meta', { name: 'twitter:image', content: 'https://efnext.github.io/social.svg' }],
1515
];
1616

1717
const headers = process.env.GITHUB_ACTIONS === "true" ?

0 commit comments

Comments
 (0)