JsonApiDotNetCore icon indicating copy to clipboard operation
JsonApiDotNetCore copied to clipboard

A framework for building JSON:API compliant REST APIs using ASP.NET and Entity Framework Core.

Results 93 JsonApiDotNetCore issues
Sort by recently updated
recently updated
newest added

I use Marten in my app and would love to see JADNC support it so I have started the work over here: https://github.com/wayne-o/JsonApiDotNetCore.Marten While Marten is a documentDb / ES...

enhancement
help wanted

With operations over sockets (or a SignalR Hub), it'd be possible to : - subscribe to certain URLs - with include, fields, etc, this would be the most similar to...

enhancement
help wanted

## Description Investigate what it would take to switch the persistence layer from a relational database to a graph db such Neptune, Titan, Arango, etc. We should provide a reference...

enhancement
help wanted

I think the operations from this list that are predicates would be relevant to support as filter operators: https://docs.microsoft.com/en-us/ef/core/modeling/spatial Most relevant are probably the ones that are supported by all...

enhancement
help wanted

#### SUMMARY How to specify the relationshipname for secondary endpoints in case of Nested relationships #### DETAILS How to specify the relationshipname for secondary endpoints in case of Nested relationships....

question

Include the fully qualified type names of the conflicting controllers at https://github.com/json-api-dotnet/JsonApiDotNetCore/blob/6b69ed3f8f396348b1665e6395acfb77ab74c4bd/src/JsonApiDotNetCore/Middleware/JsonApiRoutingConvention.cs#L81.

enhancement

## Is your feature request related to a problem? This design is based on the community request at https://gitter.im/json-api-dotnet-core/Lobby?at=63199f777ccf6b6d45c52943. ## Describe the solution you'd like Currently, developers can control [which...

enhancement

This PR introduces improved support for `required` and `nullable` properties in OpenAPI schemas, by taking into account enabled/disabled nullable reference types and enabled/disabled model state validation. [The mapping as outlined...

Aside from the merge itself, the last two commits are manual additions worth reviewing: - [Fix build warning: duplicate package reference](https://github.com/json-api-dotnet/JsonApiDotNetCore/pull/1186/commits/0413d6dcb5c98dfeb6a11daeaf190263dccf07f1) - [Package updates, centralize versions, address breaking changes](https://github.com/json-api-dotnet/JsonApiDotNetCore/pull/1186/commits/47320f0e7732c42b8a6b71051234ca6beed96a3a) -...

Because System.Text.Json [supports](https://github.com/dotnet/runtime/tree/main/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/Converters/Value) serializing [Version](https://docs.microsoft.com/en-us/dotnet/api/system.version?view=net-6.0) and [Uri](https://docs.microsoft.com/en-us/dotnet/api/system.uri?view=net-6.0) objects, it would be interesting to see if we can make the following work: ```c# public class ExampleResource : IIdentifiable { [Attr] public...

enhancement
needs-investigation