Understanding the Record in C#

Introduction

In C#, the introduction of the record type in C# 9 brought a new paradigm for creating immutable data structures with minimal code. Unlike classes or structs, records are designed specifically for scenarios where the primary purpose is storing and transferring data. In this article, we’ll dive deep into the concept of records, their benefits, use cases, and how they differ from traditional classes and structs.

What is a Record?

A record in C# is a reference type used to define immutable data objects with built-in value-based equality. They are ideal for scenarios where you need a concise and expressive way to model data without writing extensive boilerplate code.

public record Person(string FirstName, string LastName);

In the example above, the Person record automatically generates a constructor, Equals, GetHashCode, and ToString methods, along with value-based equality comparisons.

Immutability by Default

One of the key features of records is their immutability. When you define a record, its properties are read-only by default, promoting functional programming principles.

var person = new Person("John", "Doe");
// person.FirstName = "Jane"; // This will result in a compile-time error.

The immutability ensures that the data remains consistent and is thread-safe, especially in concurrent applications.

Value-Based Equality

Unlike classes that use reference-based equality by default, records use value-based equality. This means two records with the same values are considered equal.

var person1 = new Person("John", "Doe");
var person2 = new Person("John", "Doe");

Console.WriteLine(person1 == person2); // Output: True

With classes, this comparison would typically return False unless you override Equals and GetHashCode. Records do this automatically, making them ideal for scenarios where equality is determined by the content rather than the reference.

Positional Syntax and Conciseness

Records offer a positional syntax that allows you to define properties and the constructor in a single line.

public record Car(string Make, string Model, int Year);

This reduces boilerplate code and makes your data models concise and readable.

Inheritance in Records

Records support inheritance, allowing you to create more complex data models with derived types.

public record Vehicle(string Make, string Model);
public record Car(string Make, string Model, int Year) : Vehicle(Make, Model);

This makes records more flexible and powerful in modeling hierarchical data.

With-Expressions for Non-Destructive Mutation

One of the challenges with immutable data is updating properties. Records introduce the expression, allowing you to create a new instance with modified properties without altering the original instance.

var person1 = new Person("John", "Doe");
var person2 = person1 with { LastName = "Smith" };

Console.WriteLine(person2); // Output: Person { FirstName = John, LastName = Smith }

The original person1 remains unchanged, and a new record instance, person2, is created with the updated value.

Records vs. Classes vs. Structs

While records, classes, and structures all have their use cases, understanding the differences is crucial.

  • Records: Focused on immutability, value-based equality, and concise syntax. Best for data transfer objects (DTOs) and data models where equality is based on content.
  • Classes: Suitable for scenarios where you need mutable objects or reference-based equality. Classes are versatile and can be used for a wide range of object-oriented programming use cases.
  • Structs: Value types primarily used for small, lightweight objects that are frequently allocated and deallocated. Structs are stack-allocated and have performance benefits for small data containers.

Use Cases for Records

Records are perfect for,

  • Data transfer objects (DTOs)
  • Immutable data models
  • Value objects in domain-driven design (DDD)
  • Read models in CQRS (Command Query Responsibility Segregation)

Potential Pitfalls

While records bring many benefits, there are a few considerations.

  • A record might not be the best fit if you require mutable properties.
  • Records are reference types, so they might not be as performant as structs in certain scenarios where value types are preferred.
  • In scenarios where reference-based equality is needed, a class may be more appropriate.

Conclusion

The record type in C# is a powerful addition for creating immutable data models with minimal boilerplate code. With features like value-based equality, concise syntax, and non-destructive mutation via expressions, records are a natural choice for scenarios where data immutability and content-based equality are key. Embracing records in your C# applications can lead to more robust, maintainable, and expressive code.


Similar Articles