Я использую «настоящий» сервер IIS 7.5 на этапе разработки. Сайт указывает на папку веб-проекта, которая содержит WebProjectDir\App_Data\database.mdf
.
Сайт работает под ApplicationPoolIdentity
следующим образом:
При запуске приложения появляются следующие ошибки:
Failed to generate a user instance of SQL Server due to failure in retrieving the user's local application data path. Please make sure the user has a local user profile on the computer. The connection will be closed.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.SqlClient.SqlException: Failed to generate a user instance of SQL Server due to failure in retrieving the user's local application data path. Please make sure the user has a local user profile on the computer. The connection will be closed.
Source Error:
Line 14: public ActionResult Index()
Line 15: {
Line 16: return View(db.Genres.ToList());
Line 17: }
Line 18:
Source File: G:\MvcMusicStore\Controllers\StoreController.cs Line: 16
Я могу устранить эти ошибки, установив приложение для запуска под NetworkService
. Однако я хочу использовать ApplicationPoolIdentiy
, если это возможно с любой настройкой. Как это сделать?