Tagged Questions
2
votes
1answer
114 views
Triggering Data Changes in N-Tier
I've been studying n-tier architectures as of late, particularly in VB.NET with Entity Framework and/or LINQ to SQL. I understand the basic concepts, but have been wondering about best practices in ...
7
votes
3answers
476 views
Motivation for a service layer (instead of just copying dlls)?
I'm creating an application which has 2 different UIs so I'm making it with a service layer which I understood is appropriate for such scenario.
However I found myself just creating web methods for ...
3
votes
2answers
339 views
“Don't cross the streams” Database access objects independant of the Data tier in an N-Tier architecture?
I'm adding functionality to our website which performs long-running processes asynchronously using MSMQ. Doing this ansynch, however means we need to notify users when their requests are completed. ...