GraphQL in .NET Core - Part 2
Using Projections - getting related data
Mar 6, 20232 min read146

Search for a command to run...
Series
In this series, I will post articles going over the C# language and other .NET related topics
Using Projections - getting related data

Expose an entity using HotChocolate

In .NET, as with many other languages, we use Value types and Reference types. Value types are stored on the stack (if they are not contained inside a reference type), and Reference types are stored on the heap. Boxing is taking a Value type and stor...

The ref keyword in C# can be used when passing a variable that holds a Value or a Reference type to a function. In this article I want to show you how this keyword works and how you can take advantage of it to avoid a possible bug. Ref and Value type...
