MinimalRichDomain.SourceGenerators
1.0.0
dotnet add package MinimalRichDomain.SourceGenerators --version 1.0.0
NuGet\Install-Package MinimalRichDomain.SourceGenerators -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MinimalRichDomain.SourceGenerators" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MinimalRichDomain.SourceGenerators --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MinimalRichDomain.SourceGenerators, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MinimalRichDomain.SourceGenerators as a Cake Addin #addin nuget:?package=MinimalRichDomain.SourceGenerators&version=1.0.0 // Install MinimalRichDomain.SourceGenerators as a Cake Tool #tool nuget:?package=MinimalRichDomain.SourceGenerators&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
MinimalRichDomain
A minimal impact shared kernel library for basic event-sourced domain models.
Usage
public partial class BlogPost : AggregateRoot<BlogPostId>
{
public Title Title { get; private set; }
public uint Views { get; private set; }
#pragma warning disable CS8618 // Rehydration ensures invariants are maintained.
public BlogPost(BlogPostId id, IReadOnlyCollection<IDomainEvent> domainEvents) : base(id, domainEvents) { }
#pragma warning restore CS8618
private BlogPost(BlogPostId key,
Title title,
uint views)
: base(key)
{
Title = title;
Views = views;
}
public static BlogPost New(Title title)
{
var blogPost = new BlogPost(BlogPostId.New(), title);
blogPost.RaiseAndApplyDomainEvent(new NewBlogPostPostedEvent(blogPost.Id, blogPost.Title, 1));
return blogPost;
}
public void View(BloggerId viewedBy)
{
RaiseAndApplyDomainEvent(new BlogPostViewedEvent(Id, viewedBy, DateTimeOffset.UtcNow, NextVersion));
}
}
public partial class BlogPost
{
protected override void ValidateState()
{
if (Title is null)
throw new InvalidOperationException("Blogger rehydrated in corrupt state. Title is missing.");
}
protected override void Apply(MinimalRichDomain.IDomainEvent @event)
{
Apply((dynamic)@event);
}
private void Apply(NewBlogPostPostedEvent @event)
{
Title = @event.Title;
Views = 0;
}
private void Apply(BlogPostViewedEvent @event)
{
Views++;
}
}
public sealed record class NewBlogPostPostedEvent(BlogPostId Id, Title Title, int Version) : IDomainEvent;
public sealed record class BlogPostViewedEvent(BlogPostId BlogPostId, BloggerId ViewedBy, DateTimeOffset ViewedAt, int Version) : IDomainEvent;
MinimalRichDomain.SourceGenerators
Source generator for Id value objects for domain entities.
Usage
[GenerateId]
public class BlogPost
{
public BlogPostId Id { get; } // Type generated by the source generator
}
Generated struct:
"using System;
#nullable enable
namespace SameNameSpaceAsEntityIdWasGeneratedFrom;
public readonly partial struct BlogPostId
{
public Guid Value { get; }
public static BlogPostId Empty => new(Guid.Empty);
private BlogPostId(Guid value)
{
Value = value;
}
public static BlogPostId New() => new(Guid.NewGuid());
public static BlogPostId FromValue(Guid value) => new(value);
public static bool operator ==(BlogPostId left, BlogPostId right)
{
return left.Equals(right);
}
public static bool operator !=(BlogPostId left, BlogPostId right)
{
return !left.Equals(right);
}
public override bool Equals(object? obj)
{
if(obj is not BlogPostId other)
return false;
else
return Value == other.Value;
}
public override int GetHashCode()
{
return Value.GetHashCode();
}
public override string? ToString()
{
return Value.ToString();
}
}
#nullable restore
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- Microsoft.CodeAnalysis.CSharp (>= 4.8.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 144 | 4/9/2024 |
0.1.7-alpha | 226 | 12/6/2023 |
0.1.6-alpha | 104 | 12/6/2023 |
0.1.5-alpha | 122 | 12/5/2023 |
0.1.4-alpha | 113 | 12/5/2023 |
0.1.3-alpha | 115 | 12/5/2023 |
0.1.2-alpha | 114 | 12/1/2023 |