Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
11answers
2k views

Entity classes decoupled from LINQ to SQL provider for implementing the Repository pattern. How?

I have looked over the Repository pattern and I recognized some ideas that I was using in the past which made me feel well. However now I would like to write an application that would use this ...
1
vote
3answers
207 views

C++ Callback — How to decouple the call back type

For example, in the following pseudo code, Class B need to call A::Action() through B::m_cb member. The objective is, how to make a general, non-template Callback class, so "B" does not have to be a ...
1
vote
2answers
329 views

Using Linq Expressions to decouple client side from DAL (which is server side)

I could not find the answer amongst the many posts on Linq, so here I am. We have a client-server application, where the client side has absolutely no knowledge of the actual DAL on the server side, ...
1
vote
1answer
576 views

Silverlight 3 Ria Services reference

I have a Silverlight project where functionality is segregated across multiple Silverlight libraries due to the size and complexity of the application. I am having problems figuring what is the best ...
0
votes
3answers
85 views

What's the most used philosophy of keeping independent concepts separate in OOP?

Or according to your own experience, what's your favorite trick ?