If you’re organizing your application following Clean Architecture and Domain-Driven Design, with your Core domain model in one project that…
Keep Reading →
The C# language has had support for the async and await keywords (and yet another new way to perform asynchronous operations) for a while…
Keep Reading →
I started a weekly newsletter last year that's been going for over 70 weeks now sending a short, practical developer tip each week. You can…
Keep Reading →
I was recently mentoring a client remotely who was using Visual Studio. They were demonstrating some of the work they had done and design…
Keep Reading →
Last Updated April 2024 This is advice that I have given to many novice developers, and that I would like to have been able to give to…
Keep Reading →
You may have heard that in ASP.NET Core MVC 2.0, there is a new feature called Razor Pages. This feature allows you to create pages that don…
Keep Reading →
I've started looking at using MediatR for my domain events implementations. To that end, I created a quick sample project using ASP.NET Core…
Keep Reading →
Breakpoints offer a great way to debug our software, letting us literally stop time during code execution and inspect what's going on at…
Keep Reading →
When using the new Razor Pages feature in ASP.NET Core 2.0, you can (and usually should) define a separate “codebehind” file for your…
Keep Reading →
Routing in ASP.NET MVC apps has often presented challenges to developers, resulting in a bunch of different route debugging tools and nuget…
Keep Reading →
- ← Previous Page
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169 Next Page →