문제

I need to set up ASP.NET and connect it to some demo (northwind) data.

Considering all the versions of SQL, what is the most current /efficient way to get a database into a project and do a select against it?

This question arose once we discovered we could download a MDB and a MDF format of northwind...

도움이 되었습니까?

해결책

asp.net is loaded with tons of how to's for started. One section specifically goes into the different ways of interacting with a database. I choose the old fashion DAL which they outline at http://www.asp.net/data-access/tutorials/creating-a-data-access-layer-cs.

There are now plenty of new ways using LINQ and other methods, but u can look at all the options yourself.

다른 팁

If you have an existing SQL Server installation, use that, otherwise install SQL Express and drop the mdf file into your App_Data folder.

You can then use what ever data access method you prefer. eg ADO.Net, Linq to sql, Entity Framework etc.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top