This blog discusses how to implement a Value Object's Equals
method efficiently.
[More]
Domain Driven Design uses a series of patterns for building applications that are more maintainable,
and allow a complex application to stand the test of time. One of these patterns is Repository,
and a lot of people spend time building their own repositories.
[More]
![Named Arguments](https://u2ublogimages.blob.core.windows.net/peter/MakeYourCodeMoreReadableWithNam
[More]
Using NuGet packages in your project is very practical, until you need to debug... With Source Link you can now step through NuGet packages with ease!
[More]
Blazor is a framework that allows you to build rich web pages and SPAs using .NET standard libraries
[More]
Summary: This post is about how to enable migrations for library projects, with user-secrets.
[More]
<Entry Text="{o:Bind StringObservable, Mode=OneWay}"/>
<Entry Text="{o:Bind StringObserver, Mode=OneWayToSource}"/>
<Entry Text="{o:Bind StringSubject, Mode=TwoWay}"/>
[More]
<TextBox Text="{o:Bind StringObservable, Mode=OneTime}"/>
<TextBox Text="{o:Bind StringObservable, Mode=OneWay}"/>
<TextBox Text="{o:Bind StringObserver, Mode=OneWayToSource}"/>
<TextBox Text="{o:Bind StringSubject, Mode=TwoWay}"
ToolTip="{o:Bind StringObservable, Mode=OneWay}"/>
[More]
In this blog we are going to dynamically create a delegate using reflection both paying attention to performance and correctness.
[More]