Tagged Questions
Data access layer is a layer of a computer program which provides simplified access to data stored in persistent storage of some kind, such as an entity-relational database.
58
votes
11answers
15k views
Repository Pattern vs DAL
Are they the same thing? Just finished to watch Rob Connery's Storefront tutorial and they seem to be similar techinques. I mean, when I implement a DAL object I have the GetStuff, Add/Delete etc ...
36
votes
12answers
7k views
What is the best way to improve performance of NHibernate?
I have an application that uses NHibernate as its ORM and sometimes it experiences performance issues due to how the data is being accessed by it. What kind of things can be done to improve the ...
26
votes
5answers
4k views
ASP.NET and Entity Framework in Layered Architecture - using Entity Framework for ORM only
I have an ASP.NET application that uses a layered architecture e.g. presentation layer, business logic layer, data access layer.
I don't want to the business layer to have to know anything about how ...
18
votes
4answers
1k views
Should I return IEnumerable<T> or IQueryable<T> from my DAL?
I know this could be opinion, but I'm looking for best practices.
As I understand, IQueryable implements IEnumerable, so in my DAL, I currently have method signatures like the following:
...
16
votes
7answers
3k views
What are the disadvantages of Typed DataSets
I come from a world that favors building your own rather than rely on libraries and frameworks built by others. After escaping this world I have found the joy, and ease, of using such tools as Typed ...
15
votes
4answers
2k views
Where is the line between DAL and ORM?
The terms are often thrown around interchangeably, and there's clearly considerable overlap, but just as often it seems implied that people see something strongly implied by saying that a system is an ...
15
votes
6answers
2k views
Mocking vs. Test DB?
Earlier I asked this question How to correctly unit test my DAL?, one thing left unanswered for me is if to really test my DAL is to have a Test DB, then what is the role of mocking vs. a testing DB?
...
14
votes
17answers
3k views
Whose Data Access Layer do you use for .NET?
We have grown our own DAL library, but are researching using a third party DAL - to relieve the maintenance overhead.
I know that Microsoft and some others have written simple DALs - although ...
13
votes
7answers
3k views
Why put a DAO layer over a persistence layer (like JDO or Hibernate)
Data Access Objects (DAOs) are a common design pattern, and recommended by Sun. But the earliest examples of Java DAOs interacted directly with relational databases -- they were, in essence, doing ...
11
votes
4answers
12k views
Why does an Entity Framework Connection require a metadata property?
I switched my DAL from using LINQ over to Entity Framework. Because my application connects to different databases depending on the current user, I need to dynamically create the DataContext at run ...
11
votes
11answers
7k views
What object mapper solution would you recommend for .NET? [closed]
There are many ORM solutions out there, so in your experiences what seems to be the best choice?
NHibernate or Subsonic, Genome,DLinq, LLBLGen - there seems to be a plethora of options, so pros and ...
10
votes
6answers
757 views
Recommended structure for high traffic website
I'm rewriting a big website, that needs very solid architecture, here are my few questions, and pardon me for mixing apples and oranges and probably kiwi too:) I did a lot of research and ended up ...
10
votes
6answers
4k views
UI, Business Logic Layer, Data Layer and where to put web services
We are developing a web application. We want to possibly reuse the work we do here for a different application that will use the same database, and use the same business rules for reading and writing ...
10
votes
1answer
2k views
Extension Methods for Indexers, would they be good?
Extension Methods for Indexers, would they be good ?
I was playing around with some code that re-hydrates POCO's.
The code iterates around rows returned from a SqlDataReader and and uses reflection ...
9
votes
1answer
355 views
IEnumerable vs IQueryable for Business Logic or DAL return Types
I know these questions have been asked before, I'll start by listing a few of them (the ones I've read so far):
IEnumerable vs IQueryable
List, IList, IEnumerable, IQueryable, ICollection, which is ...
9
votes
6answers
13k views
Problem when trying to configure enterprise library 5.0 (Data Access Application Block)
Hi There Stackoverflow,
I am running into some problems while trying to get DAAB from Enterprise library 5.0 running. I have followed the steps as per the tutorial, but am getting errors...
1) ...
9
votes
2answers
995 views
Nullable values in C++
I'm creating a database access layer in native C++, and I'm looking at ways to support NULL values. Here is what I have so far:
class CNullValue
{
public:
static CNullValue Null()
{
...
9
votes
4answers
5k views
Best “pattern” for Data Access Layer to Business Object
I'm trying to figure out the cleanest way to do this.
Currently I have a customer object:
public class Customer
{
public int Id {get;set;}
public string name {get;set;}
public ...
8
votes
2answers
201 views
How should EntityManager be used in a nicely decoupled service layer and data access layer?
Somewhat related to my other question Should raw Hibernate annotated POJO's be returned from the Data Access Layer, or Interfaces instead? , I am experienced in creation of nicely decoupled ...
8
votes
3answers
244 views
Future Proof DALs
We are in the beginning of a really long development project with several sub projects. Basically each sub-project will take several months to develop. The code itself will be split up into several C# ...
8
votes
2answers
557 views
I'm having problems understanding IQueryable<>
So I'm trying to understand IQueryable<>. A tutorial I'm reading suggests using it but not really sure why. The code simply returns some values using LINQ to SQL. I've done this plenty of times ...
8
votes
3answers
3k views
POCO's, DTO's, DLL's and Anaemic Domain Models
I was looking at the differences between POCO and DTO (It appears that POCO's are dto's with behaviour (methods?))and came across this article by Martin Fowler on the anaemic domain model.
Through ...
8
votes
7answers
960 views
Do you allow the Web Tier to access the DAL directly?
I'm interested in perceived "best practice", tempered with a little dose of reality here.
In a web application, do you allow your web tier to directly access the DAL, or should it go through a BLL ...
8
votes
7answers
3k views
What to return from the DAL to BLL
I currently have an application which consists of:
User Interface (web page)
BLL (Manager & Domain Objects)
DAL (DataAccess class for each of my Domain Objects).
I use the following in the UI to ...
8
votes
6answers
3k views
What ORM to Run: telerik Open Access VS Subsonic VS linq to sql VS Active Record
We are looking into using an ORM and I wanted some opinions/comparisons
The basic criteria we have for an ORM is: Easy to use/configure(short learning curve), flexible, the ability to abstract it ...
8
votes
4answers
735 views
What would you choose if you could use any .NET DAL technology?
I'm getting back into .NET development after a couple years and it seems that now, especially with LINQ, the way you access your data has changed and become much easier. For instance, in a ASP.NET MVC ...
8
votes
11answers
1k views
Would you use LINQ to SQL for new projects?
I've been investigating what data layer to use for a new web-based project I'm designing and I'm very keen to look at incorporating LINQ to SQL. Its apparent simplicity, flexibility and designer ...
8
votes
3answers
2k views
How to correctly unit test my DAL?
I'm new to unit testing. But how do I unit test my DAL which is written with Entity Framework, so I can make sure my DAL code is working correctly but no database is actually touched? Could someone ...
8
votes
2answers
3k views
How does the MVC pattern differ, if at all, from the DAL / BLL design pattern?
I'm making my way through the early Data Access Tutorials on Microsoft's ASP.NET website and it occurred to me that this all seems awfully similar to what I have read about separating your logic and ...
7
votes
2answers
364 views
Nhibernate: Who is responsible of transaction management in a non web application
Well in a web application a unit of work is responsible for the transaction management.
But what about a windows application?
As far as I know the repository is the connector between my data access ...
7
votes
2answers
470 views
Data access architectures with Raven DB
What data access architectures are available that I can use with Raven DB?
Basically, I want to separate persistence via interfaces, so I don't expose underline storage to the upper layers. I.e. I ...
7
votes
5answers
441 views
.NET Object persistence options
I have a question that I just don't feel like I've found a satisfactory answer for, either that or I've not been looking in the right place.
Our system was originally built using .NET 1.1 (however ...
7
votes
8answers
1k views
How to write unit tests for database calls
I'm near the beginning of a new project and (gasp!) for the first time ever I'm trying to include unit tests in a project of mine.
I'm having trouble devising some of the unit tests themselves. I ...
7
votes
3answers
721 views
One complex query vs Multiple simple queries
What is actually better? Having classes with complex queries responsible to load for instance nested objects? Or classes with simple queries responsible to load simple objects?
With complex queries ...
7
votes
7answers
2k views
Where do you put SQL Statements in your c# projects?
I will likely be responsible for porting a vb6 application to c#. This application is a windows app that interacts with an access db. The data access is encapsulated in basic business objects. One ...
7
votes
2answers
3k views
DAL and BLL in .NET
There is this DAL/BLL design suggestion by Microsoft for ASP.NET (2.0) apps. I know some of the alternatives and I've read related questions here on SO. However I wonder if this proposed solution is ...
7
votes
2answers
5k views
Difference between Data Access Layer and Model in MVC
I have implemented what I thought was a pretty decent representation of MVC in several web applications but since having joined crackoverflow, I'm finding that perhaps my initial definitions were a ...
7
votes
5answers
1k views
How should the Data Access Layer be structured?
I initially designed my system following the s# architecture example outlined in this codeproject article (Unfortunately, I am not using NHibernate). The basic idea is that for each domain object ...
6
votes
3answers
56 views
Business Layer vs SQL Server
I have an application that does complex calculations for members. Each member can have multiple US states linked to their profile. Each state has got different calculations for each course a member ...
6
votes
3answers
65 views
Data Access Layer - Designing Class where should responsibility of creating saving be
I am designing Data Access Layer with ADO.NET 2.0 and C#, Sql Server 2005. I often fight with my brain over where to place those calls. Which way of the below i should follow for maintainable robust ...
6
votes
1answer
63 views
What's the Ideal Way to Define Singular vs Plural Gets in a Storage API?
I've got an internal storage layer in my application, which handles Foo objects. During Get operations, the data layer has significant benefits to clustering gets, but I only actually do multiple ...
6
votes
4answers
194 views
What am I missing with the Respository Pattern? How do you use it in the real world?
Every example of the Repository Pattern I have seen deals with a very simple use case - one object type and the most basic CRUD operations. The Repository is then very often plugged straight into an ...
6
votes
1answer
452 views
Alternatives to the repository pattern?
People have yelled at me, that I should always use the repository pattern, which I've done for quite a while... Now I'm wondering whether there is any decent alternatives for this pattern at all?
6
votes
2answers
241 views
Is it poor design for DAOs to manage transactions?
I've been reading about the sun blueprint GenericDAO implementation and Gavin King's take on this for use with Hibernate. It seems he doesn't mention anything about transaction handling:
public ...
6
votes
1answer
201 views
To Wrap or Not to Wrap: Wrapping Data Access in a Service Facade
For a while now, my team and I have been wrapping our data access layer in a web service facade (using WCF) and calling it from the business logic layer. Meanwhile, we could simply use the repository ...
6
votes
4answers
1k views
.net, C# Interface between Business Logic and DAL
I'm working on a small application from scratch and using it to try to teach myself architecture and design concepts. It's a .NET 3.5, WPF application, and I'm using Sql Compact Edition as my data ...
6
votes
5answers
813 views
New .NET 3.5 Project: Which DAL technology to use?
I am preparing a new Windows project and wonder what kind of DAL technology to use. Originally I was looking for something simpler to not spending too much time on building it. But I understand also ...
6
votes
3answers
2k views
What patterns to use to build layers for delphi win 32 application
I want to develop mysql database application using dbexpress to develop from scratch or work with existing databases. To create reusable layers what patterns-components should I use. I want the app to ...
6
votes
6answers
608 views
.NET MVC or just plain old ASP.NET?
This is a shoutout as I've been spending the last few days learning about .NET and the process has left me a little confused rather than enlightened. Just as a background info, I have knowledge of ...
6
votes
12answers
1k views
Poll: ASP.Net Data Access Methodologies
With .Net 3.5 SP1 adding Entity Data Model as an option for data access we are now faced with several out of the box options; EDM, LINQ-to-SQL, Typed Datasets, pure ADO.Net.
We also have several open ...