Tagged Questions

3
votes
7answers
119 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 . …
4
votes
4answers
213 views

When to separate certain entities into different repositories?

I generally try and keep all related entities in the same repository. The following are entities that have a relationship between the two (marked with indentation): User UserPre …
2
votes
6answers
62 views

svn: module organization early in the development process

OK, I understand the trunk/tags/branches thingy for a repository with a single project. Now let's say I have a main project and a number of smaller auxiliary modules/ plugins / to …
4
votes
5answers
137 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 a …
7
votes
3answers
301 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 shoul …
1
vote
1answer
38 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, w …
6
votes
3answers
493 views

Mercurial with multiple projects

I have a couple of projects with different release cycles sitting in my svn repository. Releases are created by using the classic tags structure in svn. When there are bugs to fix …
5
votes
2answers
670 views

Business Logic Layer and Repository Pattern [closed]

Hi, Is Repository Pattern ,used in DDD, business logic layer of an application? Or it is a data access layer and business logic layer uses it inside?
1
vote
1answer
228 views

How to update created and modified fields using the repository design pattern?

I am currently working on my first asp.net mvc application. I am trying to drink the kool-aid of all the the sample projects I see and trying to use the repository design pattern. …
1
vote
1answer
307 views

Source Control for multiple projects/solutions with shared libraries

I am currently working on a project to convert a number of Excel VBA powered workbooks to VSTO solutions. All of the workbooks will share a number of class libraries and third par …