Usually MVC (asp.net) Json return Value assign to angularJS $scope.
But I need MVC Model variable directly use Like $scope .
app.controller('ConsultantPersonalInformationController',
function($scope, $filter, $http)
{
$scope.user = {
id: 1,
firstName: @Model.UserBaseViewModel.FirstName,
lastName: @Model.UserBaseViewModel.LastName };
});
Any one help me