Tagged Questions

11
votes
3answers
2k views

Repository Pattern Best Practice

So I'm implementing the repository pattern in an application and came across two "issues" in my understanding of the pattern: Querying - I've read responses that IQueryable should not be used when ...
4
votes
7answers
729 views

SVN Repository Structure

I am getting ready to set up an SVN repository, and was wondering if anyone had a good example for a repo structure. I am currently thinking: Development .. Applications .... App1 ...... ...
4
votes
5answers
243 views

Handling relations between multiple subversion projects

In my company we are using one SVN repository to hold our C++ code. The code base is composed from a common part (infrastructure and applications), and client projects (developed as plugins). The ...
2
votes
1answer
153 views

How to model a storage repository which provides intelligent REST based access

I am looking for a unique way to query the following use cases in a REST fashion:- Assuming the repository contains the following:- a. green color ball image of 1cm radius b. yellow color ball image ...
1
vote
3answers
52 views

How to move up a bazaar repository one hierarchy level up?

I have a project hierarchy like this, with a bazaar repository that has been created in subFolder_1. a_folder +-- subFolder_1 +-- .bzr +-- ... (more content) +-- subFolder_2 ...
1
vote
1answer
117 views

Repository structure when having two “configs” of the same base repo?

So I'm having a bit of a structure problem with my repositories. I hope you guys can give me a few pointers on how to go forward with this. Setup; I have one large web project, with several ...