Understanding Business Rules vs. Trivial Validation in .NET C#
Understanding Business Rules vs. Trivial Validation in .NET C#

Understanding Business Rules vs. Trivial Validation in .NET C#

The realm of software development brings with it the challenge of classifying code as trivial validation versus business rules. This becomes paramount as we venture into dealing with business logic and data validation. The distinctions between the two code categories dictates not only how we write our code, but also the flexibility and scalability of our systems. In this article, I��m going to demonstrate some practical use cases in .NET C#.

Understanding Business Rules vs. Trivial Validation in .NET C# �� Image generate with DALL-E

Example Overview

For this example, imagine a simple online bookstore system. We��ll use this scenario to explore different logic embedded in two lines of code, referring to a book service implemented within the system.

Online Book Store Service Class

Explanation

The check if (bookId <= 0) is a form of trivial validation. It��s static, unlikely to change, and checks for basic correctness of input data.

The line if (!_bookInventory.IsBookAvailable(bookId, quantity)) embodies a business rule. It��s dynamic, depending on current state of the system (i.e. the book inventory), and may change over time based on business needs.

Redefining Validation with Strong Types

Our next progression towards cleaner designs is to introduce a strong type for bookId to encapsulate this validation logic, to make our system a little stronger.

Example of Record BookId

Now, ProcessBookOrder can be refactored to accept BookId as parameter, lifting trivial validation into a higher level in the system, to allow that method to focus on business rules.

For the end...

One of the ways to achieve long-term maintainability in the software world is to reduce the number of reasons for a piece of code to change. Understanding and appropriately implementing business rules versus trivial validation goes a long way towards reducing the reasons, and results in cleaner, more maintainable, and scalable code.

By wrapping up invariants in strong types and ignoring all checks for invariants until we are ��forced�� to, we focus our attention on the ��interesting parts�� of our system, core business logic. We��re also giving our systems the freedom to grow and evolve with the business they��re serving.



Most bugs are caused by the arrival of wrong data in the flow, but developers normally use a defensive approach as a prevention, as in your first example. However, this only creates additional problems because the check is not placed in the right domain, that is, incorrect business data is allowed to be created. For example, to allow the creation of a price without a currency.

Where should you perform validation if you have say a Web UI hitting an API hitting the application layer which works with domain objects and eventually the database?

��
�ظ�
Aram Tchekrekjian

Microsoft MVP | Follow me to get better in .NET, C#, and ASP.NET Core | codingsonata.com | Technical Product Head at Aramex

1 ��

It is important to differentiate between the regular input validation and the business rules, and both ways these should remain on separate classes and injected into the caller to guarantee neat implementations and clean solutions. Also the early return strategy you've included in your code snippets are greatly helpful to make the code cleaner and highly readable. Well-done Admir.

Kristijan Kralj

I help .NET developers advance their careers by mastering the latest tech and industry best practices.

1 ��

In Web APIs, where do you put business, and where do you put validation rules?

Great insight on the importance of distinguishing between business logic and validation checks for maintainable and scalable code!

Ҫ�鿴���������ۣ����¼

Admir Mujkic�ĸ�������

  • How Can You Scale Azure SignalR Services for High-Concurrency Applications?

    How Can You Scale Azure SignalR Services for High-Concurrency Applications?

    Introduction to SignalR and the Importance of Scaling SignalR is a library for ASP.NET developers that reduces the��

    23 ������
  • Optimizing String Searches in C# with SearchValues

    Optimizing String Searches in C# with SearchValues

    Searching arrays for specific values is a common task in programming. In some cases, like searching paths (e.

    5 ������
  • Middleware in .NET 8

    Middleware in .NET 8

    The development of ASP.NET Core simplified the development process by adding the concept of middleware to replace older��

    4 ������
  • Essential Strategies and Practices for Entity Framework Core 8

    Essential Strategies and Practices for Entity Framework Core 8

    In this article, we will explore different approaches to using Entity Framework, some of the advantages you get from��

    21 ������
  • HttpClient and HttpMessageHandler in .NET 8 - The Harmony of HTTP Communication

    HttpClient and HttpMessageHandler in .NET 8 - The Harmony of HTTP Communication

    In the world of .NET development, efficient HTTP communication is the ground on which scalable, reliable and��

  • Navigating Through .NET 8 and OpenID Solutions

    Navigating Through .NET 8 and OpenID Solutions

    In the last couple of months in the Penzle LLC we are considering changing our current Identity Provider (IdP) for a��

    7 ������
  • Asynchronous programming in .NET 8 �� Common Pitfalls and Recommended Practices

    Asynchronous programming in .NET 8 �� Common Pitfalls and Recommended Practices

    In the world of modern .NET development, the async/await paradigm stands as a cornerstone for efficient asynchronous��

    7 ������
  • Integrating TimeProvider in .NET 8 for Efficient Order Processing in eShop Platforms

    Integrating TimeProvider in .NET 8 for Efficient Order Processing in eShop Platforms

    The release of .NET 8 has introduced the TimeProvider abstract class, a transformative addition for managing time in .

    5 ������
  • Essential Knowledge Every Developer Must Possess

    Essential Knowledge Every Developer Must Possess

    A successful software project depends on an accurate estimation of effort, time, and cost. Project budgets, timelines��

  • Understanding the "Tell, Don't Ask" Principle Through Real-World Scenarios in C#

    Understanding the "Tell, Don't Ask" Principle Through Real-World Scenarios in C#

    In today's article, I will cover one particular programming concept which would allow you to tidy up code, making it��

    4 ������

��������

������ԱҲ�����