Tagged Questions
4
votes
3answers
107 views
In multi-tier architecture with a service layer, is it acceptable to have one service call another service?
I have a multi-tiered app with a data layer containing repositories.
On top of this, I have a service layer. My understanding is that there should be a single service for each repository.
Is it ok ...
3
votes
1answer
167 views
.NET Multi tier Design LINQ
I am quite new to the architecture and I am desiging an application for my next .NET project. My proposed architecture design is as follows:
It is traditional three tier application which contains:
...
3
votes
4answers
871 views
Keep settings in sync between forms application and windows service (or any n-tier, really)
I have a Windows Service that performs a number of periodic activities, and I want to change the settings of this service from a Windows Forms app. I'm not sure, though, about the best way to make ...
2
votes
3answers
414 views
WinForm fat client: Architecture decisions: Did I make the wrong ones?
I have a .NET Winform Click-Once-deployed fat client that talks to three databases, 2 SQL Server databases and a Oracle one.
The first SQL Server database, I will call the Master. I wanted add more ...
1
vote
2answers
57 views
When we pass a primary-key to UI, should not it be considered as mixing of 2 layers and a BAD practice?
When we pass a Db identifier of any object to the UI (Let's say the PrimaryKey of an object in the url query string) aren't we mixing two layers (Persistnet layer and presentation layer) basically?
A ...
0
votes
4answers
55 views
Entities between Data- and BusinessLayer
I am in the starting phase of a new project. Since, I always want to improve myself and try to avoid the mistakes from the past (everyone has some baggage), i looked at the Layered Architecture Sample ...
0
votes
0answers
80 views
NHibernate in multi-tier statefull applications
Currently I use Onion architecture with domain driven design, IoC, MVP etc... The app is just talking directly to database, but I am worried about scaling to client - server architecture later ...