I have to create an application in which I am asked to create an persistence layer in the application. The application is in .net. I have created a business layer and a pres
Persistence = read/write/delete records to disk or database.
Layer = insulation, etc.
Persistence Layer = generally means to isolate read/write/delete logic from the business logic. ideally by placing a few (or a single) point of interaction between the business logic and the persistence modules.
I think its something we've all done (save to disk, db, etc), this is just a fancy academic term, they're just asking us to:
Cheers,