Tagged Questions
1
vote
3answers
483 views
Best practices / Design patterns for code generation [closed]
I'm working on a ground up code generator project, but I feel I might be reinventing the wheel.
Does anyone know where I can find some best practices guidelines or design patterns for code ...
3
votes
1answer
341 views
Caching strategies for entities and collections
We currently have an application framework in which we automatically cache both entities and collections of entities at the business layer (using .NET cache). So the method GetWidget(int id) checks ...