Tagged Questions

0
votes
4answers
41 views

Using Linq-to-SQL entities in your BLL or UI?

I had a client ask for advice building a simple WPF LOB application the other day. They basically want a CRUD application for a database, with main purpose being as a WPF training …
0
votes
1answer
24 views

Less Linq to SQL and more Repository way to provide Rule Violations?

In the nerd dinner, they use partial keywords to overload the Linq to SQL classes to embed the data validation. Let's say you want to data validate exclusively in the repository. …
1
vote
3answers
77 views

Where to put *advanced* business logic in ASP.NET MVC/Linq2Sql project?

I am finishing up a rewrite of a project management tool using ASP.NET MVC, LINQ2QL and the Repository design pattern. Pretty much following the NerdDinner example. I have a clas …
3
votes
4answers
68 views

Organizing classes using the repository design pattern

I have started upgrading one of our internal software applications, written in ASP.NET Web Forms, and moving to ASP.NET MVC. I am trying to leverage the Repository design patter …
1
vote
3answers
98 views

Is this Repository pattern efficient with LINQ-to-SQL?

I'm currently reading the book Pro Asp.Net MVC Framework. In the book, the author suggests using a repository pattern similar to the following. [Table(Name = "Products")] public …
2
votes
5answers
92 views

Ruby on Rails with Repository Pattern?

After working with ASP.Net MVC, it has me thinking about Rails. I worked with Rails prior, but am a little rusty. ASP.Net MVC tutorials recomment hiding data layer implementation …
1
vote
1answer
24 views

Differ Domain Model From Database Schema in Entity Framework 4.0

I'm very new to the Entity Framework and trying to understand how to best architect my data layer in way that makes the most sense from the prospective of a developer. I'm working …
2
votes
3answers
60 views

Eager loading and repository pattern

I'm wondering how to properly handle eager-loading problem for complex object graphs when using Repository pattern. This isn't ORM specific problem i guess. First try: public int …
0
votes
3answers
78 views

what is the best practice to use for repository when you need to do expensive retrieval

Ok, lets say i have a DataRepository class with the methods, getNames() and getStates(). lets say this data is stored in a webservice or database that is an expensive operation. …
0
votes
2answers
108 views

Repository pattern in c#

How to implement repository pattern in C#.net 2.0? Just show me the basic structure. Coz we don't have DataContext in .net 2.0.
0
votes
2answers
38 views

Should a Repository be responsible for “flattening” a domain?

Disclaimer: I'm pretty new to DDD and its associated terminology, so if i'm mislabeling any concepts, please correct me. I'm currently working on a site with a relatively simple …
0
votes
0answers
24 views

Repository design problems

Hi everybody! I think i have some design errors in my ongoing web project (i'm using Linq2SQL implementing repository pattern) 1) Every repository creates its own DataContext (is t …
2
votes
5answers
107 views

How to implement CQS with in memory changes?

Having Watched this video by Greg Yound on DDD http://www.infoq.com/interviews/greg-young-ddd I was wondering how you could implement Command-Query Separation (CQS) with DDD when …
1
vote
4answers
72 views

Where do I put business logic when I’m using the repository pattern?

Hi, I am using the Repository Pattern for my application. I have a class User. User is identified by Email. The UserRepository contains a method CreateUser(User user). There is a …
2
votes
1answer
31 views

What’s the right way to Load child collections inside a POCO with a SubSonic Repository?

I've read the questions asking about the right way to inject data access into POCOs, and the consensus seems to be "don't". Fine, what is the right way then? If I have an Order obj …

1 2 3 4 5 12 next
15 30 50 per page