Click here to Skip to main content
15,886,362 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionMicrosoft.Practices.EnterpriseLibrary.Security.Cryptography.Cryptographer issue Pin
Sudhanshu Mani Tripathi26-Aug-10 2:49
Sudhanshu Mani Tripathi26-Aug-10 2:49 
AnswerRe: Microsoft.Practices.EnterpriseLibrary.Security.Cryptography.Cryptographer issue Pin
T M Gray26-Aug-10 5:37
T M Gray26-Aug-10 5:37 
GeneralRe: Microsoft.Practices.EnterpriseLibrary.Security.Cryptography.Cryptographer issue [modified] Pin
Sudhanshu Mani Tripathi26-Aug-10 19:48
Sudhanshu Mani Tripathi26-Aug-10 19:48 
QuestionProblem with Wizard Control Pin
AndyASPVB25-Aug-10 11:35
AndyASPVB25-Aug-10 11:35 
QuestionOdd Logon Failure with Enterprise Libraries Exception Handler Pin
DeepToot25-Aug-10 5:04
DeepToot25-Aug-10 5:04 
QuestionSilverlight and aspx pages Pin
future383925-Aug-10 4:11
future383925-Aug-10 4:11 
QuestionBuild DAL for asp.net 3.5 project, List <> or DataSet Pin
vrsanaidu25-Aug-10 1:49
vrsanaidu25-Aug-10 1:49 
AnswerRe: Build DAL for asp.net 3.5 project, List or DataSet Pin
Ennis Ray Lynch, Jr.25-Aug-10 3:50
Ennis Ray Lynch, Jr.25-Aug-10 3:50 
I voted this as a bad question not because it is a bad question but because it is not a good one. Some one keeps marking questions as good when they are, in-fact, neither good nor bad.

There are a lot of ways to construct a DAL and there are many tools which will purport to do all of the work for you. However, there is one thing none of those tools will do and that is help you to understand the business requirements. Time and again I see duplicated and wasted effort from DAL Generator based systems because no one took the time to ask why, knowing, it is trivial to rewrite the DAL.

Personally, I prefer hand coding, if for no other reason that it forces me to understand the object graph that is being constructed and to choose the most effective manner for doing so without fighting a tool-kit. Write your DAL yourself and you will learn a lot. 3.5 makes it really easy with automatic properties.

Below is a quick sample, it is real easy and there is no magic anywhere. Any developer should be able to figure this out:

public class Customers : List<Customer>{}
public class Customer : IEntity{
    public Int32? Id{get;set;}
    public string Name{get;set;}
    public DateTime CreateDate{get;set;}
    internal static Customer Create(SqlDataReader reader){...}
}


Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting. I also do Android Programming as I find it a refreshing break from the MS.

"And they, since they Were not the one dead, turned to their affairs" -- Robert Frost

AnswerRe: Build DAL for asp.net 3.5 project, List or DataSet Pin
T M Gray25-Aug-10 11:44
T M Gray25-Aug-10 11:44 
AnswerRe: Build DAL for asp.net 3.5 project, List or DataSet Pin
Richard A. Dalton26-Aug-10 4:32
Richard A. Dalton26-Aug-10 4:32 
QuestionApparent issues with ASP.NET 4.0 and VS 2010 Pin
Talal Sultan23-Aug-10 19:19
Talal Sultan23-Aug-10 19:19 
AnswerRe: Apparent issues with ASP.NET 4.0 and VS 2010 Pin
R. Giskard Reventlov23-Aug-10 21:34
R. Giskard Reventlov23-Aug-10 21:34 
AnswerRe: Apparent issues with ASP.NET 4.0 and VS 2010 Pin
Eaverae23-Aug-10 22:48
Eaverae23-Aug-10 22:48 
GeneralRe: Apparent issues with ASP.NET 4.0 and VS 2010 Pin
Talal Sultan23-Aug-10 23:17
Talal Sultan23-Aug-10 23:17 
GeneralRe: Apparent issues with ASP.NET 4.0 and VS 2010 Pin
Eaverae23-Aug-10 23:39
Eaverae23-Aug-10 23:39 
AnswerRe: Apparent issues with ASP.NET 4.0 and VS 2010 Pin
Eaverae24-Aug-10 4:58
Eaverae24-Aug-10 4:58 
GeneralRe: Apparent issues with ASP.NET 4.0 and VS 2010 Pin
Talal Sultan24-Aug-10 19:12
Talal Sultan24-Aug-10 19:12 
AnswerRe: Apparent issues with ASP.NET 4.0 and VS 2010 Pin
Eaverae25-Aug-10 0:45
Eaverae25-Aug-10 0:45 
GeneralRe: Apparent issues with ASP.NET 4.0 and VS 2010 Pin
Talal Sultan25-Aug-10 2:06
Talal Sultan25-Aug-10 2:06 
JokeRe: Apparent issues with ASP.NET 4.0 and VS 2010 Pin
Eaverae25-Aug-10 2:28
Eaverae25-Aug-10 2:28 
JokeRe: Apparent issues with ASP.NET 4.0 and VS 2010 Pin
Talal Sultan25-Aug-10 3:14
Talal Sultan25-Aug-10 3:14 
GeneralRe: Apparent issues with ASP.NET 4.0 and VS 2010 Pin
Talal Sultan29-Aug-10 19:23
Talal Sultan29-Aug-10 19:23 
GeneralRe: Apparent issues with ASP.NET 4.0 and VS 2010 Pin
Eaverae20-Sep-10 19:57
Eaverae20-Sep-10 19:57 
QuestionHow to fix the error "It is an error to use a section registered as allowDefinition='MachineToApplication' Pin
nilam247723-Aug-10 2:13
nilam247723-Aug-10 2:13 
AnswerRe: How to fix the error "It is an error to use a section registered as allowDefinition='MachineToApplication' Pin
R. Giskard Reventlov23-Aug-10 7:39
R. Giskard Reventlov23-Aug-10 7:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.