Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# architecture for large application

Can you please tell me some tutorials/books about thinking a large application in c#. I have worked with 3 tier, but i need something more specific:

a way to design panels, so that for specific users specific panels will load and specific dlls a database management so that when a user modifies an entry, others can not modify that entry should i use entity framework or should i go old school with db and class creation

any links on the above will be greatly appreciated

thanks a lot!

like image 514
psu Avatar asked Dec 28 '22 13:12

psu


2 Answers

Kind of a broad subject but two books I would recommend giving a read regardless of what language you are doing or the specifics of your project:

  • Code Complete
  • Design Patterns

If you have specific questions about how to accomplish something I would post it on here or google it.

like image 112
Abe Miessler Avatar answered Jan 16 '23 09:01

Abe Miessler


Sharp Architecture is just such an architecture. It's pretty detailed and a lot of work has gone into it.

like image 24
Erik Funkenbusch Avatar answered Jan 16 '23 08:01

Erik Funkenbusch