tagged [repository]
How do you get the Git repository's name in some Git repository?
How do you get the Git repository's name in some Git repository? When you are working in some Git directory, how can you get the Git repository name in some Git repository? Are there any Git commands?...
- Modified
- 17 Jul at 12:28
How-to inject the Entity Framework DbContext into the ConfigurationBasedRepository of SharpRepository
How-to inject the Entity Framework DbContext into the ConfigurationBasedRepository of SharpRepository I really would like to use [SharpRepository](https://github.com/SharpRepository/SharpRepository) t...
- Modified
- 23 Apr at 14:48
how to switch from svn to bzr for working locally
how to switch from svn to bzr for working locally i have imported(checkout) some read-only repository on the Internet now i want to work on this read-only (also i have better experience with bzr than ...
- Modified
- 27 Aug at 14:6
AutoMapper.Map ignore all Null value properties from source object
AutoMapper.Map ignore all Null value properties from source object I'm trying to map 2 objects of the same type. What I want to do is AutoMapper to igonore all the properties, that have `Null` value i...
- Modified
- 20 Sep at 13:49
Pros and cons of having static repositories in ASP.NET MVC application
Pros and cons of having static repositories in ASP.NET MVC application What are the pros and cons of using static repositories in an ASP.NET MVC application? Wouldn't it be better to have all the meth...
- Modified
- 23 Feb at 11:7
How to convert a normal Git repository to a bare one?
How to convert a normal Git repository to a bare one? How can I convert a 'normal' Git repository to a bare one? The main difference seems to be: - in the normal Git repository, you have a `.git` fold...
- Modified
- 23 Feb at 09:49
How do I rename a repository on GitHub?
How do I rename a repository on GitHub? I wanted to rename one of my repositories on GitHub, but I got scared when a big red warning said: > 1. We will not set up any redirects from the old location 2...
- Modified
- 3 Mar at 23:40
Should I abstract the validation framework from Domain layer?
Should I abstract the validation framework from Domain layer? I am using FluentValidation to validate my service operations. My code looks like: UserValidator i
- Modified
- 5 May at 13:23
How do I hotcopy a SVN Repository to an existing location?
How do I hotcopy a SVN Repository to an existing location? I am trying to automatically backup my SVN Repository. This is in a batch file I wrote: It works great the first time. However, each time aft...
- Modified
- 7 Jan at 02:26
Where can I find UML diagrams (instead of reinventing the wheel)?
Where can I find UML diagrams (instead of reinventing the wheel)? I am currently trying to draw a set of UML diagrams to represent products, offers, orders, deliveries and payments. These diagrams hav...
- Modified
- 5 Apr at 18:43
Transfer git repositories from GitLab to GitHub - can we, how to and pitfalls (if any)?
Transfer git repositories from GitLab to GitHub - can we, how to and pitfalls (if any)? Can one transfer repositories from GitLab to GitHub if the need be. If so, how exactly can I go about doing the ...
- Modified
- 8 Mar at 06:47
Repository Design: Sharing a transaction
Repository Design: Sharing a transaction I am implementing a Rest service using ServiceStack. We use the repository pattern and auto-wire repositories into services via IOC. Currently, we have a naive...
- Modified
- 8 Jan at 21:31
Untrack files from git temporarily
Untrack files from git temporarily I have setup a local git on my machine. When I initialized git, I added pre-compiled libs and binaries. However, now during my development I don't want to check in t...
- Modified
- 30 Jun at 05:47
How do I make a Git commit in the past?
How do I make a Git commit in the past? I'm converting everything over to Git for my own personal use and I found some old versions of a file already in the repository. How do I commit it to the histo...
- Modified
- 26 Aug at 15:16
How to trust a apt repository : Debian apt-get update error public key is not available: NO_PUBKEY <id>
How to trust a apt repository : Debian apt-get update error public key is not available: NO_PUBKEY Trying to update some repositories on Debian Etch installation and getting the following errors from ...
- Modified
- 1 Nov at 12:35
Defining many-to-many relationships in DDD
Defining many-to-many relationships in DDD Are many-to-many table structures defined as Value Objects in DDD? What if my many-to-many structure has a unique id? Also, what about 1-to-many relationship...
- Modified
- 27 Jul at 16:21
Using Repo with Msysgit
Using Repo with Msysgit When following the [Android Open Source Project instructions on installing repo](http://source.android.com/download/using-repo) for use with `Git`, after running the `repo init...
- Modified
- 6 May at 10:26
Loading Subrecords in the Repository Pattern
Loading Subrecords in the Repository Pattern Using LINQ TO SQL as the underpinning of a Repository-based solution. My implementation is as follows: IRepository Then I have extension methods that are u...
- Modified
- 16 Feb at 15:36
Transactions in the Repository Pattern using ServiceStack.ORMLite
Transactions in the Repository Pattern using ServiceStack.ORMLite I'm implementing Repository Pattern using ServiceStack.ORMLite like this: ``` public class MyRepository : IMyRepository { private ID...
- Modified
- 20 Feb at 03:26
Best practices of implementing unit of work and repository pattern using ServiceStack.ORMLite
Best practices of implementing unit of work and repository pattern using ServiceStack.ORMLite Supposing that there are two repository interface : And an IUnitOfWork interface like : what
- Modified
- 20 Feb at 06:33
Examples of Repository Pattern with consuming an external REST web service via HttpClient?
Examples of Repository Pattern with consuming an external REST web service via HttpClient? I've searched around quite a bit, but haven't found any good examples of consuming an external REST web servi...
- Modified
- 1 Oct at 18:30
How many types should be implementing the Repository pattern?
How many types should be implementing the Repository pattern? I am trying to use the repository pattern in an instance of storing pictures. What I do is save the actual pics in a directory on disk bu...
- Modified
- 4 Oct at 03:17
Unit Testing and Entity Framework
Unit Testing and Entity Framework I am very new to EF, I want to know what is the best way of creating EF with SQL Server database. After that I want to test CRUD operations. Is EF implemented in a TD...
- Modified
- 16 Oct at 08:51
Can I arrange repositories into folders on Github?
Can I arrange repositories into folders on Github? I am new to git and what I am doing now is to upload all my recent projects as repositories to github. There are a lot of different projects like web...
- Modified
- 24 Jan at 18:4
How to connect local folder to Git repository and start making changes on branches?
How to connect local folder to Git repository and start making changes on branches? I'm new to source control; in the past, I've manually backed up copies of files and made changes on clones then tran...
- Modified
- 21 Mar at 14:9