ShvetsovAU
ShvetsovAU
Hello. I am using GraphQLHttpClient library (https://github.com/graphql-dotnet/graphql-client.git) for query from one net.core servise to other. Other service use GraphQLServer library (https://github.com/graphql-dotnet/server). Example types and queries is: ```c# public abstract class...
Hello. I use Microsoft.OData.Client library to get data from service. var dataServerUrl = "http://localhost:5005/api"; var oDataContext = new DataServiceContext(new Uri(dataServerUrl)); var dataSet4 = oDataContext.CreateQuery("JournalRecords"); var res43 = dataSet4.ToList(); var res441...
Hello. I am using Microsoft.OData.Client 7.8.1. I want create DataServiceContext, CreateQuery and take data. Code is: ```c# var oDataContext = new DataServiceContext(new Uri("https://localhost:5001")); var dataSet = oDataContext.CreateQuery("Projects"); var exists =...