Reputation: 95
I am working on my final year project. It is a web based system that is based on ASP.NET/MVC. I want to start from database but I have a little confusion which database to use from Sql, sqlite and sqlite3 that is not complicated and good for me to finish my project on time. can you please give me your suggestions which database should I choose?
Upvotes: 0
Views: 81
Reputation: 47784
I recommend...
EntityFramework is an Object/Relational Mapping (ORM) framework that enables developers to work with relational data as domain-specific objects, eliminating the need for most of the data access plumbing code that developers usually need to write.
Some Pros
would also encourage you to read this post.
Upvotes: 1
Reputation: 3062
I would use SQL Server 2008R2 +, furthermore I would use Entity Framework to access it as ASP.NET/MVC fits well alongside it in the Microsoft stack.
Further developer info on Entity Framework http://msdn.microsoft.com/en-gb/data/ef.aspx
You will have to write a lot less database access code using this approach
Upvotes: 1
Reputation: 2522
asp.net / mvc is geared towards SQL (even compact) whereas sqllite is very widely deployed. I would use SQL if I was using asp.net.
Upvotes: 0