0
votes
1answer
74 views
Problem Using AutoMapper To Map DAL Properties To BLL Properties
I have a BLL class which contains properties for the fields in a Country table (CountryCode, CountryName, etc). It also has a property ioDAL, which is a reference to a DAL class ( …
2
votes
1answer
131 views
How do you map LINQ-to-SQL to your BLL classes?
I'm considering using LINQ-to-SQL for creating the DAL in my app. I normally create the DAL manually as I'm not a big fan of ORM (too much abstraction IMO) but I'm trying to save s …
5
votes
6answers
335 views
What is your favorite Business Logic Layer (BLL) development toolkit for .NET? Are there any at all?
What is your favorite Business Logic Layer (BLL) development toolkit? Are there any at all?
BLL toolkit is a set of classes (controls, VS.NET add-ins) handling typical business lo …
2
votes
8answers
587 views
Manual DAL & BLL vs. ORM
Which approach is better: 1) to use a third-party ORM system or 2) manually write DAL and BLL code to work with the database?
1) In one of our projects, we decided using the DevEx …
0
votes
1answer
30 views
Where is boost::lambda::ll?
Hi all,
I can't seem to find boost::lambda::ll for a nested ll::for_each() invocations in any header file in the boost_1_39_0 distribution. Could someone point me to the right d …
0
votes
1answer
162 views
GUI to Business Object Mapping VB.Net
The issue I'm currently having is mapping multiple GUI fields to object properties (i.e. Presentation layer to Business Logic Layer mapping). To be more specific, this is in VB.Ne …
3
votes
6answers
751 views
What to return from the DAL to BLL
Hello Everyone,
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 …
2
votes
2answers
374 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 domai …
2
votes
7answers
396 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 …
6
votes
2answers
1k 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 pr …
1
vote
1answer
109 views
BLL errors best practise
What is the best practise for returning an error of a business rule in a BLL? SHould I just raise exceptions and catch them in the presentation layer, shoudl I return some kind of …
0
votes
2answers
74 views
What’s your favorite Advanced ASP.NET book?
What would be some highly recommended books to get for a mid-level developer to learn advanced ASP.NET/C#/VB.NET techniques? Including, but not limited to, taking advantage of inhe …
0
votes
2answers
234 views
ASP.NET insert from bll to mysql
I am trying to make an insert to an MySql database using a three layer solution (or what it might be called).
I have done this may times with an MS-sql database and it has worked …
0
votes
1answer
49 views
What interacts with the DotNetNuke UserLogin function found in the AspNetMembershipProvider?
Hi,
I'm trying to figure out where the login functionality is that interacts with the UserLogin function of the AspNetMembershipProvider section, there's no references to where th …
2
votes
4answers
470 views
Sharepoint Web Part Management
I have a rather large project developed on Sharepoint and Project Server, designed as a multi-tier application. I programmatically manage web parts on certain web part pages. Accor …
