I\'m using content-negotiation, so depending on the header of the request I provide JSON/XML output. Now I was wondering what the best location is for providing this functionality.
I have a Business Object Layer that I use in a c开发者_运维技巧ouple of other applications and I want to use it on my MVC application. My concern is more a design concern: Is it correct to have someth
Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing th
We are moving from ASP.NET Web Forms to MVC 2.0. In most of our projects we have a typical setup to communicate with a database.
I\'m royally confused about ASP.NET now. I believed that everytime you retrieved a webpage business model referred to by that page would be created and that after the display had been sent to the user
Below is a method from from my console application calling a DAL method. Whats the best way to wrap this in a BLL method so it can be called directly from the presentation? I have worked on projects i
I\'m trying to write a small app with very strict boundaries between BLL and DAL and am now wondering what the best way would be to pass the data (Domain Transfer Objects) between the layers.
I\'m trying to create a repeater control bound with data of my database. This should be use with a BLL.
I\'m toying with building a BLL for my application.From what I\'ve seen / read, it seems the BLL should be stateless.Doesn\'t this mean all BLL methods could be static?Or I\'d at least only ever need
I am developing a new business application which will require a business layer and a data access layer.