tagged [repository]

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...

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...

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...

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...

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

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...

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...

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...

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...

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...