The *Onion Architecture* is a software architecture proposed by Jeffrey Palermo. It is similar to the *Hexagonal Architecture* (Ports and Adapters) proposed by Alistair Cockburn.
0
votes
1answer
57 views
Converting to IoC, how to handle inner objects
I've looked through a number of threads here (perhaps I'm using the wrong terminology), but I'm converting a Web Application over to use IoC via NInject. My other IoC projects were fairly small so it ...
0
votes
2answers
110 views
Should we expose IDataContext in an Onion architecture
When implementing a Onion architecture in ASP.NET MVC, it is my understanding that we should/could expose the IDataContext interface, which can be injected and referred to in the UI.
So basically in ...
1
vote
2answers
300 views
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 the Domain model. e.g. that's the business objects and ...
0
votes
2answers
309 views
Configuring mapping behavior that's non-framework specific
I'm trying to configure my Object Mapper without knowing which mapper I'm using. :/
This might sound a bit strange. The reason for this is that I'm trying out the Onion Architecture so my UI cannot ...
0
votes
1answer
210 views
How to use dynamic module loading in an onion architecture using MVC4 as frontend
I'm trying to wrap my head around dependency injection in the Onion Architecture, I've found this solution which uses a dependency resolution layer around the onion. But there is so much going on that ...
1
vote
5answers
238 views
Does Onion Architecture contradict IoC
Jeffrey Palermo pioneered the onion architecture, which I have found a good approach.
http://www.headspring.com/jeffrey/onion-architecture-part-4-after-four-years/
However his statement "Inner ...
2
votes
2answers
324 views
Dependency Resolution in Onion Architecture
The Onion Architecture is a way of structuring applications to maintain separation of concern and loose coupling (example project at: http://onionarch.codeplex.com/). Dependency Injection/Resolution ...
1
vote
3answers
211 views
How to implement UnitOfWork with Onion Architecture without introducing dependencies?
I am setting up an asp.Net Mvc 4 app and looking to configure it using the Onion Architecture Pattern.
In the past I have used the Unit of Work Pattern like this
public class UnitOfWork : ...
0
votes
2answers
292 views
Onion Architecture External Services
Im currently working on a project which is based on Onion Architecture . The above image Shows the Solution.
In the Infrastructure We have External Service . But the WebAPI has access only to Core ...
1
vote
2answers
180 views
How can I solve this NHibernate Querying in an n-tier architecture?
I've hit a wall with trying to decouple NHibernate from my services layer. My architecture looks like this:
web -> services -> repositories -> nhibernate -> db
I want to be able to spawn ...
0
votes
1answer
282 views
Onion architecture for middle tier/backend services
I am currently working on Onion Architecture from J.Palermo. I have some trouble in implementing it in my case. Is this architecture appropriate for 'business less' web sites, aka mashup of services ?
...
0
votes
1answer
130 views
MongoDB: using onion architecture, does my domain/core layer need to reference the MongoDB dlls?
MongoDB has its own ObjectId type that it uses as the default primary key. I'm trying to set up an application designed using Onion Architecture with MongoDB as the persistence engine in the ...
1
vote
1answer
148 views
Unit Testing The Onion [closed]
I have an architecture based on the Onion Architecture. I'm curious about unit testing the system. This is how the system flows:
MVC -> Services -> Repositories -> NHibernate -> Database
...
1
vote
1answer
333 views
Consuming multiple APIs and WebServices using the onion architecture
I currently am setup up a Visual Studio solution using the onion architecture. I have a pretty good understanding on how to structure the solution but I am running into a bit of a pickle. My solution ...
3
votes
3answers
1k views
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 the separation between repositories and domain services.
I (mis)understand ...
0
votes
1answer
229 views
Where do resource files go within Onion Architecture?
2 part question... I have several resource files (.resx) used in my solution primarily for translation of strings. For example, Errors.resx, Validation.resx, and Enums.resx.
Part1 : If I didn't have ...
1
vote
1answer
234 views
best layer for placing dependency injection related code in layered proeject
I am planning to follow onion architecture for my new application.
the solution hierarchy is as follows
Domain - where all the interfaces for the services and repositories
defined.
Infrastructure ...
1
vote
1answer
292 views
Onion Architecture questions?
I have a few questions regarding the Onion Architecture and MVC.
1) What are the differences between Domain Services and Application Services?
2) How does the Service/Repository/UnitOfWork pattern ...
2
votes
2answers
254 views
Resolving a dependency in my Service layer
I'm having trouble trying to figure out how to solve a dependency issue within my architecture. I'm using NHibernate and I'm trying to abstract its ICriteria interface with my own ICriteriaItem ...
0
votes
2answers
233 views
Where should I hash my password in a DDD based architecture (Onion Architecture)?
I'm trying to figure out the best place to hash my password for Authentication in my architecture. This is my request flow:
...
0
votes
1answer
293 views
Is the Onion Architecture similar to the Service-Repository-UnitOfWork pattern?
I have been writing MVC apps using what I call the Service-Repository-UnitOfWork pattern, which looks like this:
MVC Controllers --> Services --> Repositories --> EntityFramework
and then
...
1
vote
2answers
304 views
Managing NHibernate Session in an Onion Architecture
I'm trying to set NHibernate to handle my sessions per web request. I have a project that initializes my Session when any of my repositories are used. I would like to know the best way to manage my ...
1
vote
2answers
418 views
DDD Factory Entity Value Object
I have been increasingly adopting DDD / Onion Architecture in my current project.
One of the many things I am still unclear about is how much encapsulation should there be.
Easier explained with a ...
2
votes
2answers
362 views
Onion Architecture Logging NHibernate
I'm using an architecture based on this implementation of the onion architecture. I have decided to challenge myself to change out NHibernates default logger (log4net) with NLog. I understand how to ...
3
votes
1answer
547 views
Fluent NHibernate and NLog
I'm having issues with some vague errors popping out of my fluent configuration. I have read that setting up a logging solution will help me zero in on the issue. I would like to use NLog. I ...
2
votes
1answer
213 views
Where to put shared parts when using the onion architecture?
I am trying to apply the onion architecture by J. Palermo, but I have a few things I am struggling with.
I have a few parts and I don't know exactly where to put these.
I have a plugin engine which ...
4
votes
3answers
710 views
how to implement services and repositories on onion architecture?
I've been studying onion architecture for a couples days. I understand how the dependencies should always go towards the center and how to use dependency injection to accomplish this. But I have a ...
1
vote
1answer
426 views
Onion Architecture and Registering Dependencies in DI Container
I have been reading up on the Onion architecture, and I have what I think is a simple question about how assembly dependencies should be arranged for a DI container to be able to wire everything up.
...
0
votes
0answers
237 views
Any examples of Java OSS with onion architecture? [closed]
Are there any Java open source code out there I can take a look at, with onion architecture? (Specifically a relatively pure domain core.)
Edit:
I don't have a question about the concept of onion ...
0
votes
1answer
720 views
Onion Architecture : Where to put Factories Implementations?
I'm coming to build new "Enterprise solution"
So i decided to use "Onion Architecture" because i wanna as much as flexible architecture.
But I'm new to "Dependency Resolution" concern.
As I ...
9
votes
2answers
3k views
Onion Architecture
I am setting up a project structure for an upcoming internal application trialling the Onion Architecture proposed by Palermo (http://jeffreypalermo.com/blog/the-onion-architecture-part-3/).
I have ...
0
votes
1answer
284 views
Advice on filtering data and code reuse with Onion Architecture
Here are my questions and then I'll give you the background for them:
I would prefer to use Method 2 as my application design, so is there a way to provide filtering like Method 1 without ...
11
votes
2answers
1k views
What is the relationship between DDD and the “Onion Architecture”?
What is the relationship between Domain-driven design (DDD) and "The Onion Architecture" of Jeffrey Palermo?
Is the Onion Architecture a subset of DDD?
19
votes
1answer
2k views
Onion archicecture dependencies in the same layer: Infrastructure and Web communicating
I am designing an ASP.NET MVC application using the Onion Architecture described by Jeffrey Palermo.
It is an ASP.NET MVC 2.0 project, where I am requiring that all views be strongly typed using ...