Skip to content

Commit bc8aef8

Browse files
committed
Fix links in doc-net
1 parent 186322c commit bc8aef8

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

_includes/defaultbody.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
{{content}}
1515
</div>
1616
<div id="content-footer" class="hidden-xxs">
17-
<div style="padding-left: 10px;">&copy; IdeaBlade 2012-2019</div>
17+
<div style="padding-left: 10px;">&copy; IdeaBlade 2012-2021</div>
1818
<div style="flex-grow:2"><a href="http://opensource.org/licenses/MIT" target="_blank"><img src="/images/logos/mit.png" height="25px" width="25px"></a> Free &amp; open source</div>
1919
<div style="padding: 0 10px 4px 0;"><a href="http://www.ideablade.com/" target="ideablade_site"><img src="/images/logos/ideablade-new-logo-h21.png" height="21" width="88" alt="ideablade"></a></div>
2020
</div>

doc-net/breeze-server-core.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ For detailed documentation:
1212

1313
We have also provided a sample Breeze Server application along with instructions on how it can be built below:
1414

15-
* [For .NET Core 3](https://github.com/Breeze/northwind-core-ng-demo/blob/master/STEPS-Server-Core3.md)
16-
* [For .NET Core 2](https://github.com/Breeze/northwind-core-ng-demo/blob/master/STEPS-Server-Core.md)
15+
* [For .NET 5](https://github.com/Breeze/northwind-demo/blob/master/server/STEPS-Server-NET5.md)
16+
* [For .NET Core 3](https://github.com/Breeze/northwind-demo/blob/master/server/STEPS-Server-Core2.md)
17+
* [For .NET Core 2](https://github.com/Breeze/northwind-demo/blob/master/server/STEPS-Server-Core2.md)
1718

1819
More details are also available as subtopics on the left hand menu.
1920

@@ -24,5 +25,6 @@ More details are also available as subtopics on the left hand menu.
2425
<a href="https://www.nuget.org/packages/Breeze.Core/" target="_blank">Breeze.Core</a><br />
2526
<a href="https://www.nuget.org/packages/Breeze.Persistence/" target="_blank">Breeze.Persistence</a><br />
2627
<a href="https://www.nuget.org/packages/Breeze.Persistence.EFCore/"
27-
target="_blank">Breeze.Persistence.EFCore</a>
28-
<a href="https://www.nuget.org/packages/Breeze.Persistence.NH/" target="_blank">Breeze.Persistence.NH</a>
28+
target="_blank">Breeze.Persistence.EFCore</a><br/>
29+
<a href="https://www.nuget.org/packages/Breeze.Persistence.NH/" target="_blank">Breeze.Persistence.NH</a>
30+

doc-net/contextprovider-4x.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ redirect_from: "/doc-net/contextprovider.html"
55
---
66
# ContextProvider
77

8+
> **NOTE: This page is for Breeze running on .NET 4.x**<br>
9+
> [Go here for .NET Core version](/doc-net/persistencemanager-core)
10+
811
The `ContextProvider` is a server-side component for managing data access and business validation with .NET technologies.
912

1013
`ContextProvider` is the base class for the [`EFContextProvider`](/doc-net/ef-efcontextprovider) and the `NHContextProvider` classes which rely on an ORM (EntityFramework and NHibernate respectively) for relational database access and metadata generation.

doc-net/ef-efcontextprovider-4x.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ redirect_from: "/doc-net/efcontextprovider.html"
66
# EFContextProvider
77

88
> **NOTE: This page is for Breeze running on .NET 4.x**<br>
9-
> [Go here for .NET 4.x version](/doc-net/ef-persistencemanager-core)
9+
> [Go here for .NET Core version](/doc-net/ef-efpersistencemanager-core)
1010
1111
Many application servers use an ASP.NET Web API controller to handle the client's HTTP requests. And they use the Entity Framework (EF) to model and access a SQL database. Breeze has an ***EFContextProvider** component to make controller interactions with EF a little easier. It's basically a wrapper around your application's *ObjectContext* or *DbContext* that mediates between the Breeze controller and EF. It takes care of a lot of routine plumbing.
1212

doc-net/ef-efpersistencemanager-core.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ layout: doc-net
44
# EFPersistenceManager
55

66
> **NOTE: This page is for Breeze running on .NET Core**<br>
7-
> [Go here for .NET 4.x version](/doc-net/ef-contextprovider-4x)
7+
> [Go here for .NET 4.x version](/doc-net/ef-efcontextprovider-4x)
88
99
Many application servers use an ASP.NET Web API controller to handle the client's HTTP requests. And they use the Entity Framework (EF) to model and access a SQL database. Breeze has an ***EFPersistenceManager** component to make controller interactions with EF a little easier. It's basically a wrapper around your application's *DbContext* that mediates between the Breeze controller and EF. It takes care of a lot of routine plumbing.
1010

doc-net/ef-serverside-model-4x.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ redirect_from: "/old/documentation/server-side-model.html"
55
# The server-side model
66

77
> **NOTE: This page is for Breeze running on .NET 4.x**<br>
8-
> [Go here for .NET Core version](/doc-net/ef-serverside-validation-core)
8+
> [Go here for .NET Core version](/doc-net/ef-serverside-model-core)
99
1010
In the sample code we implement the persistence service as an ASP.NET Web API that queries and saves entities with the help of the Entity Framework. You can write the service a different way but this is a convenient approach for .NET developers and the one we'll discuss on this page and the ones that follow.
1111

@@ -22,7 +22,7 @@ A Breeze client model maps easily to (almost) every structure supported by Entit
2222

2323
The Breeze.js client does not support "many to many" relationships *without a join entity* at this time. You will have to expose the junction/mapping table as an entity.
2424

25-
The Breeze.net server components support EF 6, EF 5.x, and EF 4.x (but no versions prior to v.4.2). See the [NuGet Packages page](/doc-net/nuget-packages) for more info.
25+
The Breeze .Net server components support EF 6, EF 5.x, and EF 4.x (but no versions prior to v.4.2). See the [NuGet Packages page](/doc-net/nuget-packages) for more info.
2626

2727
## Build your model
2828

0 commit comments

Comments
 (0)