Top "Onion-architecture" questions

The *Onion Architecture* is a software architecture proposed by Jeffrey Palermo.

Repository pattern and mapping between domain models and Entity Framework

My repositories deal with and provide persistence for a rich domain model. I do not want to expose the anemic, …

.net entity-framework domain-driven-design repository-pattern onion-architecture
What are the typical layers in an onion architecture?

I am currently studying the domain driven design, and try to apply it for a WPF project. I watched some …

c# .net architecture domain-driven-design onion-architecture
Clean Architecture vs Onion Architecture

I have been reading up on the Onion Architecture and today I found out about Uncle Bob's Clean Architecture. For …

architecture onion-architecture clean-architecture
Onion Architecture - Repository Vs Service?

I am learning the well-known Onion Architecture from Jeffrey Palermo. Not specific to this pattern, but I cannot see clearly …

asp.net-mvc domain-driven-design onion-architecture
Onion architecture compared to hexagonal

Is there any difference between them (onion | hexagonal), from my understanding they are just the same, they focus upon the …

architecture software-design onion-architecture hexagonal-architecture
Onion Architecture, Unit of Work and a generic Repository pattern

This is the first time I am implementing a more domain-driven design approach. I have decided to try the Onion …

c# .net repository-pattern unit-of-work onion-architecture
Onion Architecture

I am setting up a project structure for an upcoming internal application trialling the Onion Architecture proposed by Palermo (http://…

c# design-patterns domain-driven-design onion-architecture
Generic repository to update an entire aggregate

I am using the repository pattern to provide access to and saving of my aggregates. The problem is the updating …

entity-framework domain-driven-design repository-pattern entity-framework-6 onion-architecture
Onion vs. N-Layered Architecture

One thing beforehand: I arrive from an N-layered background. I have now spent quite a bit time getting my head …

architecture dependency-injection inversion-of-control onion-architecture n-layer
Opinion on ASP.NET MVC Onion-based architecture

What is your opinion on the following 'generic' code-first Onion-inspired ASP.NET MVC architecture: The layers, explained: Core - contain …

entity-framework asp.net-mvc-4 onion-architecture