CakePHP doesn\'t seem to ever mention separating the business logic and data access layers of an app.This is my first MVC app and my \"fat models\" are turning out to be very fat because they contain
I\'d like to write a unit test for my data access layer to make sure that everything works allright in it.
For an upcoming effort I\'ll be looking at a partial rewrite of an existing system.One piece of it is a DAL which is implemented as a .NET assembly that is referenced by a few applications and provide
Excuse me for my poor English. Ok, I\'m thinking about DDD approach now and it sounds great but... There is one little question about it. DDD says that the domain model layer is totally decoupled fro
In TDD, I\'ve been testing business logic by mocking data access functionalities. but in reality I need the layers below the business layer also to be implemented for the application to work.
I\'m try to use a lambda to set a default value based on a value in another table. Here is my model: db.define_table(\'trip_instance\', timestamp, sos_table,
Assuming an architecture as such. MODEL > BLL > DLL Trying to implement lazy loading in my MODEL I have run into a circular dependency between my MODEL and BLL..
I have used the .Net framework extensively for backend processes and web pages but I have never needed to use Windows Forms. The only experience I have with Windows form type technology is with Delphi
I have a data开发者_如何学JAVA access class that loads reference data. Each type of entity will execute it\'s own stored procedure and return a result set specific for that entity type. Then I have a
I am working with a multi-purpose Stored Procedure that does either an insert or update for either Claim or Policy. I would like to only create one DAL method to call this update/insert.