In this chapter, we discuss and build the various projects needed for a simple “Hello, World” program in Orleans. While we could build a Hello World in a single C# file, it is important to understand how to separate concerns and improve maintainability by organizing Orleans code into separate projects.
Project Structure
Grains classes: At the heart of an Orleans solution are the classes that implement the grains logic. These classes are typically located together ...