business-logic
Lookup Tables - Where to put in n-Tier Architecture
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[详细]
2023-01-11 16:12 分类:问答Business Layer/Code-Behind Performance Question
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[详细]
2023-01-08 17:10 分类:问答What are Business Objects and what is Business Logic?
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.[详细]
2023-01-07 23:30 分类:问答Separating UI and logic in C#
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[详细]
2023-01-05 04:51 分类:问答Using unity to decouple business logic layer from data access layer
I have implemented Unity within my Asp.Net MVC2 project.I am currently registering my BLL types on Application Start.[详细]
2023-01-03 20:11 分类:问答Business Logics on the client side
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?[详细]
2023-01-03 16:25 分类:问答Receive Events from the Business Objects
How to keep receiving events even with changed references? In a project I have the following relation between BO (Business object) and GUI[详细]
2023-01-02 16:13 分类:问答What classes should I map against with NHibernate?
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[详细]
2023-01-02 14:34 分类:问答Repository, Service or Domain object - where does logic belong?
Take this simple, contrived example: UserRepository.GetAllUse开发者_开发问答rs(); UserRepository.GetUserById();[详细]
2023-01-02 03:16 分类:问答Should i use partial classes as business layer when using entity framework?
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[详细]
2023-01-01 08:28 分类:问答