Skip to content

xmolecules/nmolecules

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
src
 
 
 
 
 
 
 
 
 
 

nMolecules – Architectural Abstractions for .NET

A set of libraries to help developers work with architectural concepts in .NET. Member of the xMolecules family. Goals:

  • Express that a piece of code (namespace, class, method...) implements an architectural concept.
  • Make it easy for the human reader to determine what kind of architectural concepts a given piece of code is.
  • Allow tool integration (to do interesting stuff like generating persistence or static architecture analysis to check for validations of the architectural rules.)

Expressing DDD Concepts

Example:

using NMolecules.DDD;

[Entity]
public class BankAccount
{
    [Identity]
    public IBAN IBAN { get; }

    /* ... */
}

[ValueObject]
public readonly record struct Currency { /* ... */ }

[Repository]
public interface Accounts { /* ... */ }

When we take Ubiquitous Language serious, we want names (for classes, methods, etc.) that only contain words from the domain language. That means the titles of the building blocks should not be part of the names. So in a banking domain we don't want BankAccountEntity, CurrencyVO or even AccountRepository as types. Instead, we want BankAccount, Currency and Accounts – like in the example above.

Still, we want to express that a given class (or other architectural element) is a special building block; i.e. uses a design pattern. nMolecules provide a set of standard annotations for the building blocks known from DDD.

Expressing Eventing Concepts

TODO

Expressing Architecture

jMolecules provides annotations to mark a package as a layer (or ring):

TODO: port documentation from jMolecules.

Installation

To use nMolecules in your project just install it from the NuGet Gallery.

https://www.nuget.org/packages/NMolecules.DDD/ https://www.nuget.org/packages/NMolecules.Events/ https://www.nuget.org/packages/NMolecules.Architecture/

Release Instructions

Increment the version number in one or several .csproj files and the GitHub Actions will push a new release to NuGet.

Manual steps:

  • In GitHub: Create a release that points to the automatically created tag vX.Y.Z
  • In NuGet: Add Readme.
  • In NuGet: unlist old versions.

When the NuGet secret gets obsolete, generate a new on. See https://netlicensing.io/blog/2020/09/01/publish-nuget-packages-using-github-actions/

About

Libraries to help developers express architectural abstractions in .NET code

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages