hello guys i need to use pure SQL queries for my database project
at the same time i wanna use ASP.net MVC so i can learn a new technology !!!
can i use SQL with ASP.net MVC WITHOUT using ” LINQ to SQL ” ?!
i’m still learning so i’m sorry if it so stupid using things the OLD SCHOOL
but my instructor insists that he want to see a PURE SQL Queries
hello guys i need to use pure SQL queries for my database project at
Share
Yes. You can use whatever you want for your model layer. Note, you can use raw SQL queries with LINQ To SQL as well.
Or perhaps your instructor wants straight up ADO.NET, which works fine too.
There is an example here.