I'm just starting development on a new website and am trying to do it correctly, that is, with a DAL and not with queries in code which I had before.
I understand the principles of it all, but I am finding this DAL with table adapters and wizards that do too much to be really messy to work with. Does anyone have any recommendations on what I should be using instead and a link to a tutorial on how to get going quickly with it?
I have a code generation tool that I've posted on my blog (including the source code). Data Access Layer CodeGen Essentially it will produces the large portion of the DAL code for you. That is 100% of the code for "Gets" and the command parameters and assignments etc. for Insert, Update, Delete stored procedures.
The code generation uses ADO.NET Core (and nothing else). You can just take a look at the code so you get a sense of how you should write your code (as a learning tool).
I hope it helps.