Hello,
I wanted to know how to use MS-ACCESS database in implementing login feature in asp.net MVC using C#. In general template of MVC it is implemented using MS-SQL but what changes I need to do so it will work with MS-Access.
please reply.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Shailesh PatilPosted Apr 17, 2015, 12:11 PM
Pradeep ShetPosted Apr 17, 2015, 2:04 AM
No in MVC general template, it is not connected to MS-SQL. You need to create a model classes(POCO) and then map the properties of classes to data retrieved from MS-SQL(I am not talking about entity framework). To access the data from MS-ACCESS you will use oledb connection and perform the database related stuff but the result can be bound to Model and then to view manually by you.
Hope you are getting my point