Tagged Questions

9
votes
8answers
605 views

Improving code readability for SQL commands

In one of my classes for a web application I am developing, I have some reasonably long SQL queries. When developing a three-tier application, what are the best practices to make this kind of code …
1
vote
4answers
215 views

Three tier architecture question

Hello! I have an ASP.NET app with a three layer architecture: Presentation layer: ASP.NET Bussiness Layer: C# library. Data Access Layer: C# library with ADO.Net Entity Framework objects. Some …
0
votes
2answers
79 views

ASP.NET Three Tier

I want to develop an application based on ASP.net and Oracle using three tier architecture where the data access layer will be kept on a totally different server(Linux). I posted a question before and …
0
votes
3answers
65 views

Trying to return rows between a given id and the same id + offset, where should most logic go to determine how to retrieve the data?: BLL or DAL

Hi, In my database I have a table called ThingsInACircle. Every time a Thing is added to the ThingsInACircle, it gets added with a ThingId that is auto incremented. Imagine the Things in this table …