I have a few lookup tables that I am in the process of plumbing through my app.These are tables that drive dropdowns on the website.They have no business logic, but they need to get from the database
I was wondering if anyone knew if there was a performance boost of any kind in C#/ASP.NET due to moving database calls from 开发者_如何学运维the code-behind to the underlying business logic class libr
When reading, I keep seeing references to what they call Business Objects. I\'ve looked up on Wikipedia and such but I keep not getting what a Business Object is.
Does anyone have any advice on keeping logic out of my GUI classes?I try to use good class design and keep as much separated as possible, but my Form classes usually ends up with more non-UI stuff mix
I have implemented Unity within my Asp.Net MVC2 project.I am currently registering my BLL types on Application Start.
Why do people say that business logics should be implemented on the server side co开发者_JAVA百科de (e.g. EJB) and not on the client application code?
How to keep receiving events even with changed references? In a project I have the following relation between BO (Business object) and GUI
Currently, we use NHibernate to map business objects to database tables.Said business objects enforce business rules: The set accessors will throw an exception on the spot if the contract for that pro
Take this simple, contrived example: UserRepository.GetAllUse开发者_开发问答rs(); UserRepository.GetUserById();
I am working on a project using entity framework. Is it okay to use partial classes of the EF generated classes as the business layer. I am begining to think that this is how EF is intended to be used