Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
9answers
2k views

What would you choose for your data layer today, Linq or Subsonic?

We are ready to start a brand new project at work, no legacy code. We did use Subsonic in the past and we pretty happy with it. But that was before Linq. Has anyone had to face this same issue (Linq ...
3
votes
2answers
43 views

Interacting with the database using layers of separation (PHP and WordPress)

I quite often see in PHP, WordPress plugins specifically, that people write SQL directly in their plugins... The way I learnt things, everything should be handled in layers... So that if one day the ...
3
votes
3answers
142 views

so many data access options, what to use?

I am an asp.net web application developer and I always have used Enterprise Library DAAB with stored procedures for data access with 4 seprate layers (presentation layer, custom types layer, business ...
3
votes
1answer
442 views

Generating your LINQ-to-SQL datalayer

I usually use Codesmith & NetTiers for my datalayers, and as they can be run from the command line it just requires a simple batch file to regenerate / rebuild everything whenever changes are made ...
3
votes
3answers
1k views

What is the best way to build a data layer across multiple databases?

First a bit about the environment: We use a program called Clearview to manage service relationships with our customers, including call center and field service work. In order to better support ...
2
votes
1answer
456 views

Wrapping DbSet<TEntity> with a custom DbSet/IDbSet?

First off, I think this is somewhat ridiculous to do but the other members of my team insist upon it and I can't come up with a good argument against it other than "I think it's dumb"... What we're ...
2
votes
1answer
298 views

MVC using existing data- and businesslayer

I have an existing application with a datalayer (primary EF4), a businesslayer (custom code) and a windows application - now I want to create a webapplication using ASP.NET MVC but I am not sure ...
2
votes
1answer
160 views

CLR Stored Procedures

In an ASP.NET application, I have a small number of fairly complex, frequently used operations to execute against a database. In these operations, one or more of several tables needs updates or ...
2
votes
1answer
773 views

Architecture and caching considerations with large XML files

I'm building a website to display products, and categories of products. The data comes from an external service in the form of a 500k XML file. The website is ASP.NET, C#. The XML is structured as a ...
1
vote
2answers
51 views

How do I seperate my SQL and Business Logic in this example?

I have been looking for help online on how to design my php classes to separate my business logic and my data layers. I had started to design a class I thought was pretty cool but then discovered PDO ...
1
vote
2answers
273 views

Examples of C# OO design for data access

I am using the MS Enterprise Library 5.0 (data access blocks) for the main data layer of my application. Although I understand the basics of OO (yes, I need to keep learning - contantly!), I am ...
1
vote
1answer
140 views

What are options for passing objects between layers when LINQ to SQL is used?

When thinking about traditional layered application design, I often think in terms of 3 layers: The bottom-most layer which actually talks to the database (let's call this the "data access layer"). ...
1
vote
1answer
192 views

Designing DAOs around a JSON API for iPhone Development

So I've been trying to design a clean way of grabbing data for my models in iPhone land. All the data for my application is coming from JSON API's. So right now when a VC needs some models, it does ...
1
vote
2answers
503 views

Business layer, data layer, where to put queries?

I have a data access layer that has separate classes for each table in the database. Each class makes objects that reference a row in the table, they have create, update, delete, and fetch functions. ...
1
vote
2answers
63 views

Is having two Model objects for one table a common practice with LINQ-to-SQL / Entity Framework?

When using LINQ-to-SQL or Entity Framework, I can easily generate a class for each table which takes care of the CRUD basics: Info info = new Info(); info.Title = "testing"; ...
1
vote
2answers
204 views

Where do I place Data Layer in iPhone App

In .Net I usually create a separate class library and reference it in my project. This class library does all the select, insert and updates to the database. Or, I put classes or static methods in ...
1
vote
3answers
5k views

Creating a Drop Down Menu That Changes Page Content Using Show/Hide Layers and Z-Index

I am trying to create a sidebar for a site that will allow a user to select an item from a drop down menu and show an RSS Feed. The feed will change depending on which item is selected from the list. ...
1
vote
4answers
206 views

How do you decide on which ORM to use?

Castle Active Record? Plain NHibernate? Subsonic? Entity? Something like Nettiers? I'd like to use one, but I don't know enough to decide. Nhibernate seems over kill and complex, but widely used. ...
1
vote
1answer
425 views

Accessing more than one data provider in a data layer

I'm working on a business application which is being developed using DDD philosophy. Database is accessed through NHibernate and data layer is implemented using DAO pattern. The UML class diagram is ...
0
votes
1answer
33 views

Entity Framework, Repository, Data Layer, 3 Layer

I'm trying to visualize a 3-layer design with Entity Framework. If I have a Repository on top of the EF Context, are they both components of the Data Layer? Or is the Repository the Data Layer ...
0
votes
1answer
35 views

Utility to generate DataLayer

I need to write a Utility, which will capable to generate Data Layer from any following Databases : Mssql MySQL Oracle For example : I have SQL Database which contains several Tables, Views, ...
0
votes
1answer
241 views

How to use markup in an OpenLayers layer name

I have a number of data layers defined in the following manner: var mylayer = new OpenLayers.Layer.TMS("MY LAYER NAME", "", { type: "png", getURL: my_layer_geturl, isBaseLayer: false, visibility: ...
0
votes
2answers
103 views

How Exceptions are handled while designing DataLayer or any other layered architecture

I am creating a data access layer where I want to handle exceptions that should be catched by Business layer with clear idea of the source of exception. I am doing something like this.. EDIT ...
0
votes
1answer
593 views

IQueryable and lazy loading

I'm having a hard time determining the best way to handle this... With Entity Framework (and L2S), LINQ queries return IQueryable. I have read various opinions on whether the DAL/BLL should return ...
0
votes
1answer
89 views

J2EE Data layer frameworks

I am trying to figure out what are the most widely used frameworks on the data layer on a J2EE application server. I would like help in knowing which are used out there and what are their Pros and ...
0
votes
1answer
166 views

How to organize model repository while using Entity Framework?

I have dilemma about how to organize connection (repository class) to data layer in my application that uses the Entity Framework. How would you write it? And why? public class ResearchRepository { ...
0
votes
1answer
1k views

DAL design using DAAB 3.5/4.0

I'm working on a .Net 3.5 web application.It has various modules say for example Customers,Orders,etc.... I need to a design Data Access Layer (DAL) for the same using Enterprise Library 4.0 (using ...
0
votes
1answer
104 views

Vector and Layer Data Structure

I'm working with some code that is confusing me and I'm wondering if I'm just not grokking the data structures. The data I'm working with utilizes vectors and layers. I believe a vector is just a row ...
-1
votes
2answers
50 views

N-Tier - responsbility location for insert vs update

I'm creating an application which is split into a Data Layer (using repository pattern & EF 4.0), a Business layer (POCO's with additional logic) and a Service Layer (which is exposed to the ...