1
vote
1answer
28 views
WCF based WinForms app in standalone mode
Hi,
I have a windows application that has its business logic layer implemented as a WCF service. This service is currently hosted on IIS. I wanted to know that if there's a way wh …
3
votes
2answers
109 views
Should POCOs be derived from DTOs or better not?
Hi,
When creating an n-tier solution, I don't want to expose my business objects, but use DTO's instead of this. On the other side, I don't want to doubly define objects and write …
1
vote
2answers
45 views
addclass to first-level elements only
HTML:
<table id="table-1">
<tr>
<td>
<table>
<tr>
<td>content</td>
<tr>
</table> …
0
votes
0answers
15 views
Using WFS-T in n-tier application
I need to integrate WFS-T (Web Feature Service-Transactional) in my 3-tier .net application. Not sure about the best practice to do such task, so I would appreciate any help...
0
votes
1answer
63 views
mixing NHibernate with 3 tier developing
I have a 3 tiered app:
1st layer: SQL DB.
2nd layer: App Sever (dotnet)
3rd layer: smart wpf client.
I'm using NHibarnate (fluent) as the data source for the application server la …
7
votes
4answers
627 views
Entity Framework, WCF & updates
I have created an n-tier solution where I am retrieving related data from a WCF service, updating it within a Windows Forms application, and then returning the updated data via WCF …
-1
votes
1answer
34 views
Entity Framework book
Can you recommend a good Entity Framework book? I'm interested in using Entity Framework in a layered application so I would like a book that deals with such a scenario.
3
votes
2answers
107 views
Automatically Wrap a Controller Around a Service in ASP.NET MVC
Hi. The question title might not be clear but what I want to do is something like this:
This is how I layer out my app
App.Domain
App.Services
App.Web
What I want is, if …
7
votes
5answers
566 views
Where should my models live? Web tier or Data tier? (MVC + NHibernate)
I am setting up an n-tier application with MVC, Ninject, and NHibernate (my first using these technologies). For clarity's sake, the tiers are a "Data" tier, a "Services" tier, and …
0
votes
1answer
43 views
Nhibrnate POCO objects with relationships but no collections - Mutli tier
Hi,
This is a bit of conceptual questions but I think it’s the right place to ask it.
i am working with NHibernate for some time but I find it difficult to use the collections wit …
0
votes
4answers
134 views
Don’t know enough to know if this design is a great idea or an incredibly dumb one …
Using C#, asp.net 3.5, SqlServer 2005,
Trying to incorporate some inversion of control together with 3-tier architecture into my current assignment.
Don’t know enough to know if …
2
votes
1answer
53 views
Does an n-tier system make “sense” for large data set processing?
I recently became a part of the team of developers writing our "flagship" product. Its primarily a read intensive web app (asp.net(c#) and oracle) implemented in an N-tier system. …
4
votes
6answers
618 views
Error Handling in 3 layered architecture
How do I implement error handling elegantly? For example, my data access layer can potentially throw 2 types of errors:
1) not authorized access, in which case the page should hide …
7
votes
8answers
269 views
.Net Membership in nTier App
Lets say I have an ASP.Net MVC App and this app (UI) references a Business Logic Layer (BLL) and the BLL references my Data Access Layer (DAL).
I am utilizing a Custom Membership …
0
votes
2answers
109 views
CRUD Screen using N-Tier Architecture
Hello I have a ASP.net page with lot of controls and validations. I need to allow users to Save the application into the database.
I have a Master table Called Customer and 5 diff …
