run-aspnetcore icon indicating copy to clipboard operation
run-aspnetcore copied to clipboard

A starter kit for your next ASP.NET Core web application. Boilerplate for ASP.NET Core reference application, demonstrating a layered application architecture with applying Clean Architecture and DDD...

Results 7 run-aspnetcore issues
Sort by recently updated
recently updated
newest added

Thank you so much for putting out this public template. I've really found it to be very helpful. I noticed the repository folder is plural in the Core project, but...

Using the pattern here I am trying to seed an ibject that contains another collection... Details here.. Any help is grat.. Meanwhile Ill try removing all the EntityBase stuff to...

bug

So I have Normal entity which always includes public abstract class Entity : EntityBase { public DateTime CreatedOn { get; set; } public string CreatedBy { get; set; } }...

Are you switching to the method you used in the realworld app for DI? Which is preferred ? What is the reasoning ? The best I can understand is mediator...

Presentation layer references Infrastructure layer. It makes this design different from defined by DDD. Why is it so? Are you planning to change it?

I have added overloads for the "==" and "!=" operators, enabling the following operations: ```csharp ValueObject1 == ValueObject2 ValueObject1 != ValueObject2 ```