├── .gitignore ├── Almost ├── Almost.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json ├── Better ├── Better.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json ├── CQRS.sln ├── Preserialize ├── Preserialize.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json ├── README.md ├── Shared ├── Shared.csproj └── Store.cs ├── good.png ├── meh.png └── perf.linq /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | bin/ 3 | obj/ -------------------------------------------------------------------------------- /Almost/Almost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Almost/Almost.csproj -------------------------------------------------------------------------------- /Almost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Almost/Program.cs -------------------------------------------------------------------------------- /Almost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Almost/Properties/launchSettings.json -------------------------------------------------------------------------------- /Almost/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Almost/appsettings.Development.json -------------------------------------------------------------------------------- /Almost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Almost/appsettings.json -------------------------------------------------------------------------------- /Better/Better.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Better/Better.csproj -------------------------------------------------------------------------------- /Better/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Better/Program.cs -------------------------------------------------------------------------------- /Better/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Better/Properties/launchSettings.json -------------------------------------------------------------------------------- /Better/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Better/appsettings.Development.json -------------------------------------------------------------------------------- /Better/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Better/appsettings.json -------------------------------------------------------------------------------- /CQRS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/CQRS.sln -------------------------------------------------------------------------------- /Preserialize/Preserialize.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Preserialize/Preserialize.csproj -------------------------------------------------------------------------------- /Preserialize/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Preserialize/Program.cs -------------------------------------------------------------------------------- /Preserialize/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Preserialize/Properties/launchSettings.json -------------------------------------------------------------------------------- /Preserialize/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Preserialize/appsettings.Development.json -------------------------------------------------------------------------------- /Preserialize/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Preserialize/appsettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Video: https://youtu.be/8uZd51-OAEw -------------------------------------------------------------------------------- /Shared/Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Shared/Shared.csproj -------------------------------------------------------------------------------- /Shared/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/Shared/Store.cs -------------------------------------------------------------------------------- /good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/good.png -------------------------------------------------------------------------------- /meh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/meh.png -------------------------------------------------------------------------------- /perf.linq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raw-coding-youtube/cqrs/HEAD/perf.linq --------------------------------------------------------------------------------