vote up 6 vote down star
4

I am starting a new ASP.NET MVC project to learn with, and am wondering what's the optimal way to set up the project(s) to connect to a SQL server for the data. For example lets pretend we have a Product table and a product object I want to use to populate data in my view.

I know somewhere in here I should have an interface that gets implemented, etc but I can't wrap my mind around it today :-(

EDIT: Right now (ie: the current, poorly coded version of this app) I am just using plain old SQL server(2000 even) using only stored procedures for data access, but I would not be adverse to adding in an extra layer of flexability for using linq to sql or something.

EDIT #2: One thing I wanted to add was this: I will be writing this against a V1 of the database, and I will need to be able to let our DBA re-work the database and give me a V2 later, so it would be nice to only really have to change a few small things that are not provided via the database now that will be later. Rather than having to re-write a whole new DAL.

flag

17% accept rate

8 Answers

vote up 0 vote down

I just did my first MVC project and I used a Service-Repository design pattern. There is a good bit of information about it on the net right now. It made my transition from Linq->Sql to Entity Framework effortless. If you think you're going to be changing a lot put in the little extra effort to use Interfaces.

I recommend Entity Framework for your DAL/Repository.

link|flag
vote up 0 vote down

Use LINQ. Create a LINQ to SQL file and drag and drop all the tables and views you need. Then when you call your model all of your CRUD level stuff is created for you automagically.

LINQ is the best thing I have seen in a long long time. Here are some simple samples for grabbing data from Scott Gu's blog.

LINQ Tutorial

link|flag
vote up 1 vote down

I think that Billy McCafferty's S#arp Architecture is a quite nice example of using ASP.NET MVC with a data access layer (using NHibernate as default), dependency injection (Ninject atm, but there are plans to support the CommonServiceLocator) and test-driven development. The framework is still in development, but I consider it quite good and stable. As of the current release, there should be few breaking changes until there is a final release, so coding against it should be okay.

link|flag
vote up 0 vote down

Check out the Code Camp Server for a good reference application that does this very thing and as @haacked stated abstract that goo away to keep'em separated (thx OffSpring).

link|flag
vote up 0 vote down

For our application I plan on using LINQ to Entities, but as it's new to me there is the possiblity that I will want to replace this in the future if it doesn't perform as I would like and use something else like LINQ to SQL or NHibernate, so I'll be abstracting the data access objects into an abstract factory so that the implementation is hidden from the applicaiton.

How you do it is up to you, as long as you choose a proven and well know design pattern for implementation I think your final product will be well supported and robust.

link|flag
vote up 1 vote down

I would check out Rob Conery's videos on his creation of an MVC store front. The series can be found here: MVC Store Front Series

This series dives into all sorts of design related subjects as well as coding/testing practies to use with MVC and other projects.

link|flag
vote up 4 vote down

It really depends on which data access technology you're using. If you're using Linq To Sql, you might want to abstract away the data access behind some sort of "repository" interface, such as an IProductRepository. The main appeal for this is that you can change out the specific data access implementation at any time (such as when writing unit tests).

I've tried to cover some of this here:

link|flag
Can't open that link....is your site down? – Ryan Skarin Sep 22 '08 at 19:21
vote up 1 vote down

In my site's solution, I have the MVC web application project and a "common" project that contains my POCOs (plain ol' C# objects), business managers and data access layers.

The DAL classes are tied to SQL Server (I didn't abstract them out) and return POCOs to the business managers that I call from my controllers in the MVC project.

link|flag
I guess maybe some of the issue I'm trying to get an understanding on is what would the difference be between your objects in the common projects VS objects that should go in the model folder? Or does this common project replace stuffing things into models? – Ryan Skarin Sep 22 '08 at 19:06
I could be completely wrong (I'm new to MVC), but I'd use the Models folder to create mash-ups of my "common" objects for view-specific use. – muloh Sep 22 '08 at 19:11
So you'd basically extend your common objects in the models folder if they needed to do something not provided in your basic common object? – Ryan Skarin Sep 22 '08 at 19:25
If I need an object that's specific to the MVC app, I put it in the Models folder. However, I found this quote on asp.net which is making me think I'm wrong: "The model should contain all of your application business logic and database access logic." asp.net/learn/mvc/tutorial-02-cs.aspx – muloh Sep 22 '08 at 19:33
Maybe I am thinking too much about separating things into separate projects when separate cs files is really all that I should be doing. – Ryan Skarin Sep 22 '08 at 19:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.