I want to integrate GraphQL to my existing ASP.NET Framework (with Entity Framework 4) application which has an MSSQL Server as the backend.
While browsing through the GraphQL libraries for .NET I found 2 libraries - graphql-dotnet and graphql-net, being suggested on the GraphQL website (Link: http://graphql.org/code/#c-net)
It seems that (correct me if I'm wrong) :
- graphql-dotnet (https://github.com/graphql-dotnet/graphql-dotnet) - This library only supports in-memory data
- graphql-net (https://github.com/ckimes89/graphql-net) - This library works well if we want to work with data which has been stored in DB.
Any suggestion or corrections? Is it possible to perform read/write to/from the DB using the former (i.e. graphql-dotnet) library? Or should I use the graphql-net library instead?