1
vote
2answers
27 views
IRepository and relational data
I'm wondering what the recommended approach is for dealing with relational data with the IRepository pattern.
My database has the following tables with column names in parenthesi …
13
votes
10answers
188 views
Multiple SVN Repositories or single company repository
Should we have one single repository for all the company, which contains many development projects, or a repository per project? Any ideas on experience / best practice?
3
votes
7answers
107 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
. …
0
votes
3answers
50 views
How can I change the files initially imported into an SVN repository?
I have created an SVN repository for project but now realise that the files initially imported are not the most recent.
When I compare the 2 versions of the project with Beyond Co …
2
votes
4answers
84 views
Is git worth for managing many files bigger than 500MB
I would put under version control a big amount of data, i.e. a directory structure (with depth<=5) with hundreds files with size about 500Mb).
The things I need is a system tha …
0
votes
2answers
41 views
Building core shop framework in Rails. Suitable or not?
I work at an in-house IT department for company running 10 or so only shops of varying complexity. The shops code has been written over the last 8 years, each shop a new branch gro …
1
vote
1answer
22 views
How to manually disable/blacklist Maven repository
In my base project I use dependency of JasperReports which has non-existent repository declaration in its pom. When I run every Maven commad there is dependency looking for commons …
0
votes
1answer
19 views
Can I setup CVSROOT with remote access?
I created a cvs repository in my school network account, I would love to have the access to it using my local machines at home. I tried, at local, setting CVSROOT variable to be "m …
0
votes
3answers
54 views
How do I check out a subversion repository from a network share?
I have a Subversion repository on my laptop in my room (windows Vista), but I want to check it out to a computer upstairs (Ubuntu Linux). I put the repository on a network share bu …
8
votes
12answers
288 views
List of Top Repositories by Programming Language
One of the main reasons I like Perl is CPAN (Comprehensive Perl Archive Network) and the ease of finding, installing, and testing of packages it provides that solve a problem I was …
0
votes
5answers
110 views
Can’t append one list to another in C#… trying to use AddRange.
Hi I'm trying to append 1 list to another. I've done it using AddRange() before but it doesn't seem to be working here... Here's the code:
IList<E> resultCollection = ((IRep …
0
votes
2answers
33 views
Linqtosql - Returning custom class with interface
Why can't I return as a new custom class (cms.bo.Site) which implements ISite?
public IQueryable<ISite> GetSites()
{
return (from site in Db.Sites select new cms.bo.Site …
1
vote
2answers
47 views
Branching code for different platforms in SVN
Note: my code is written in flash but this is a SVN-related issue and is not a flash-specific.
I have a code library targeted at Flash Player 9 stored in an SVN repository. I want …
1
vote
2answers
69 views
ASP.MVC: Repository that reflects IQueryable but not Linq to SQL, DDD How To question
I want to create a DDD repository that returns IQueryable Entities that match the Linq to SQL underlying classes, minus any relations. I can easily return Entities minus the relat …
2
votes
3answers
80 views
Svn: How do I list all files ever committed to the repository?
Hello, everyone!
How could I let SVN list all files which were ever committed to a repository (if possible, along with location and revision).
More exactly: I need all ever exist …
