0
votes
5answers
58 views
Choosing data access methods in ASP.NET MVC
As I am a beginner to ASP.NET MVC, I would like to know what are the best data access methods for ASP.NET MVC?
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 …
1
vote
1answer
39 views
Hibernate vs Ibatis caching
Hi,
We can speed up a hibernate app easyly with 2nd level cache using infinispan or ehcache/terracotta,... but ibatis only have a simple interface to implement for caching. And hi …
1
vote
2answers
897 views
ASP.NET Data Access Layer. Is using sqlhelper.cs bad?
I'm about to start a new .net web project.
Previsouly for my n-layer web apps i've used the "Microsoft Data Access Application Block" (sqlhelper.cs) for the data access, then an i …
1
vote
2answers
27 views
How to transfer data when using LINQ as DAL?
Hi
I'm creating my first linq based project. The DAL consists of LinqToSQL classes. And the logic layer is just another DLL for keeping it simple.
I wanted to know how do I pass …
1
vote
2answers
60 views
asp.net MVC ddd DRY vs loose coupling and persistance/data access layer
So as I understand it with good loose coupling I should be able to swap out my DAL with a couple lines of code at the application root.
I have 2 DAL written, Linq-to-sql and a JSo …
1
vote
2answers
32 views
LINQ2SQL performance vs. custom DAL vs. NHibernate
Given a straightforward user-driven, high traffic web application (no fancy reporting/BI):
If my utmost goal is performance (not ease of maintainability, ease of queryability, etc …
4
votes
8answers
125 views
Is List<> better than DataSet for Interface Layer in ASP.Net ?
I want to get data from my data access layer into my business layer, then prepare it for use in my UI.
So i wonder: is it better to read my data by DataReader and use it to fill a …
0
votes
6answers
359 views
How to design a provider independet DAL (.Net)
I am currently developing a query builder application, basically a simple graphical interface that should allow users with no knowledge of SQL to define various queries on a databa …
1
vote
6answers
105 views
Simple Data Access Layer
Can anyone suggest a simple Data Access Layer (C# .NET)? Not keen on using the Microsoft Application Data Access block, seems very bloated and overkill. Also don't want to use LINQ …
1
vote
7answers
104 views
ASP.NET Application – free and best DAL Framework
Hi,
We are working on an ASP.NET application with SQL Server 2008 as backend and we are NOT using LINQ.
In the application all database calls will be performed using/through stor …
0
votes
2answers
42 views
Unit testing the DAL - please critique
Hi,
I've gotton to the point in my simple project where I'm ready to unit test the DAL.
I basically have a class called FooDataAccess with several very simple functions, lets say …
1
vote
6answers
80 views
Auto generating DAL in an ASP.NET application
Given a stored procedure, is there a way to auto generate a Data access layer? I understand that this can be done using Codesmith by creating cs templates, but was wondering if the …
0
votes
3answers
192 views
N Tiers with SubSonic 3, Dirty Columns collection is alwayes empty on update
Hello guys
here is what i am doing, and not working for me.
I have a DAL generated with SubSonic 3 ActiveRecord template, i have a service layer (business layer if you well) that …
1
vote
5answers
86 views
Using synchronization in Data Access Layer
Suppose we are developing class which implements simple CRUD operations for working with DB. This class also maintain cache for increasing performance.
public class FooTableGatew …
