I am a beginner to angular4 wanted to integrate angular with asp.net MVC, Should I use the only Angular to develop web Application or with MVC ?
2 Answers
AngularJS is a Client Side web (for browser) development framework, and it has nothing to do with the server-side stuff (eg. database related operations or managing user session).
You can use ASP.NET MVC with angular, but it's a good practice to use WEB API, because the View part from MVC will be taking care by the angular framework.