Skip to content

Commit bb61e9e

Browse files
author
Bart Koelman
committed
Updated version table (test force-push 2)
1 parent d3f46f9 commit bb61e9e

File tree

2 files changed

+20
-11
lines changed

2 files changed

+20
-11
lines changed

README.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ These are some steps you can take to help you understand what this project is an
3434

3535
## Examples
3636

37-
See the [examples](https://github.com/json-api-dotnet/JsonApiDotNetCore/tree/master/src/Examples) directory for up-to-date sample applications. There is also a [Todo List App](https://github.com/json-api-dotnet/TodoListExample) that includes a JADNC API and an EmberJs client.
37+
See the [examples](https://github.com/json-api-dotnet/JsonApiDotNetCore/tree/master/src/Examples) directory for up-to-date sample applications. There is also a [Todo List App](https://github.com/json-api-dotnet/TodoListExample) that includes a JsonApiDotNetCore API and an EmberJs client.
3838

3939
## Installation and Usage
4040

@@ -82,6 +82,17 @@ public class Startup
8282
}
8383
```
8484

85+
## Compatibility
86+
87+
A lot of changes were introduced in v4. The following chart should help you pick the best version, based on your environment.
88+
89+
| .NET Version | EF Core Version | JsonApiDotNetCore Version |
90+
| ----------------- | --------------- | ------------------------- |
91+
| .NET Core 2.x | 2.x | v3.x |
92+
| .NET Core 3.1 | 3.1, 5 | v4 |
93+
| .NET 5 | 5 | v4 |
94+
95+
8596
## Contributing
8697

8798
Have a question, found a bug or want to submit code changes? See our [contributing guidelines](./.github/CONTRIBUTING.md).
@@ -123,13 +134,3 @@ Alternatively, to build and validate the code, run all tests, generate code cove
123134
```bash
124135
Build.ps1
125136
```
126-
127-
## Compatibility
128-
129-
A lot of changes were introduced in v4, the following chart should help you with compatibility issues between .NET Core versions.
130-
131-
| .NET Core Version | EF Core Version | JADNC Version |
132-
| ----------------- | --------------- | ------------- |
133-
| 2.x | 2.x | v3.x |
134-
| 3.x | 3.x, 5.x | v4.x |
135-
| 5.x | 5.x | v4.x |

src/JsonApiDotNetCore/ArrayFactory.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,12 @@ public static T[] Create<T>(params T[] items)
1010
return items;
1111
}
1212
}
13+
14+
15+
16+
17+
18+
19+
20+
1321
}

0 commit comments

Comments
 (0)