Пожалуйста, не отмечайте это как дубликат, потому что это не похоже на дублирование, как другие вопросы переполнения стека.
У меня есть этот код, который выглядит идеально и также работает как ожидалось, но иногда он выдает исключение.Вот код
try
{
using (var db = new ClubrContext())
{
var notificationService = new PushNotificationService(_logger);
var sendMailService = new SendMailService(_logger);
var smsService = new SMSService(_logger, sendMailService);
var reminderService = new GuestQuestionReminderService(notificationService, _logger, db, smsService);
await reminderService.SendReminders();
}
}
catch (Exception ex)
{
}
А код для функции SendReminder выглядит так:
public class GuestQuestionReminderService : BaseReminderService
{
public GuestQuestionReminderService(IPushNotificationService notificationService, ILoggerService loggerService, ClubrContext dbContext, ISMSService smsService) :
base(notificationService, loggerService, dbContext, smsService)
{
}
public async Task SendReminders()
{
try
{
var groups = DbContext.Groups
.Include("Messages")
.Include("Admin")
.Include("Admin.Profile")
.Include("Promoter")
.Include("Promoter.Profile")
.Where(x => !x.Deleted && x.PartyDate >= DateTime.Today && x.Offers.Any() && x.Offers.Any(offer => offer.IsAccepted && !offer.Deleted))
.ToList();
foreach (var group in groups)
{
var offer = group.Offers.FirstOrDefault(x => x.IsAccepted && !x.Deleted);
var lastPromoterMessageDate = offer.Messages.OrderByDescending(x => x.MessageDate).FirstOrDefault(x => x.FromUserId == group.PromoterId)?.MessageDate;
lastPromoterMessageDate = lastPromoterMessageDate ?? DateTime.MinValue;
var recentAdminMessages = offer.Messages.Where(x => x.FromUserId == group.AdminId && x.MessageDate > lastPromoterMessageDate).ToList();
}
}
catch (Exception ex)
{
LoggerService.Error(ex, ex.StackTrace);
}
}
}
На первый взгляд все кажется правильным.Все обращения к базе данных выполняются с помощью оператора using, но генерируется исключение!
Я читал на одном форуме, что это может быть из-за неверной строки подключения, но я не уверен, что это готово к истине.Здесь все еще указывается строка подключения -
Data Source=[Data Source];Initial Catalog=[Database];User ID=[User Id];Password=[Password];MultipleActiveResultSets=true;
Вот трассировка стека исключений -
System.InvalidOperationException: The operation cannot be completed because the DbContext has been disposed.
System.InvalidOperationException: The operation cannot be completed because the DbContext has been disposed.
at System.Data.Entity.Internal.LazyInternalContext.InitializeContext()at System.Data.Entity.Internal.LazyInternalContext.GetObjectContextWithoutDatabaseInitialization()
at System.Data.Entity.Internal.InternalContext.UpdateEntitySetMappingsForType(Type entityType)
at System.Data.Entity.Internal.InternalContext.GetEntitySetAndBaseTypeForType(Type entityType)
at System.Data.Entity.Internal.Linq.InternalSet`1.Initialize()
at System.Data.Entity.Internal.Linq.InternalSet`1.Include(String path)
at System.Data.Entity.Infrastructure.DbQuery`1.Include(String path)
at System.Data.Entity.Internal.LazyInternalContext.InitializeContext()
at System.Data.Entity.Internal.LazyInternalContext.GetObjectContextWithoutDatabaseInitialization()
at System.Data.Entity.Internal.InternalContext.UpdateEntitySetMappingsForType(Type entityType)
at System.Data.Entity.Internal.InternalContext.GetEntitySetAndBaseTypeForType(Type entityType)
at System.Data.Entity.Internal.Linq.InternalSet`1.Initialize()
at System.Data.Entity.Internal.Linq.InternalSet`1.Include(String path)
at System.Data.Entity.Infrastructure.DbQuery`1.Include(String path)
at Clubr.WebJobs.ClubListingSchedule.Services.GuestQuestionReminderService.<SendReminders>d__1.MoveNext() in C:\sourcecode\clbr\Source\Clubr.WebJobs.ClubListingSchedule\Services\GuestQuestionReminderService.cs:line 24at System.Data.Entity.Internal.LazyInternalContext.InitializeContext()
at System.Data.Entity.Internal.LazyInternalContext.GetObjectContextWithoutDatabaseInitialization()
at System.Data.Entity.Internal.InternalContext.UpdateEntitySetMappingsForType(Type entityType)
at System.Data.Entity.Internal.InternalContext.GetEntitySetAndBaseTypeForType(Type entityType)
at System.Data.Entity.Internal.Linq.InternalSet`1.Initialize()
at System.Data.Entity.Internal.Linq.InternalSet`1.Include(String path)
at System.Data.Entity.Infrastructure.DbQuery`1.Include(String path)
at Clubr.WebJobs.ClubListingSchedule.Services.GuestQuestionReminderService.<SendReminders>d__1.MoveNext() in C:\sourcecode\clbr\Source\Clubr.WebJobs.ClubListingSchedule\Services\GuestQuestionReminderService.cs:line 24 at System.Data.Entity.Internal.LazyInternalContext.InitializeContext()
at System.Data.Entity.Internal.LazyInternalContext.GetObjectContextWithoutDatabaseInitialization()
at System.Data.Entity.Internal.InternalContext.UpdateEntitySetMappingsForType(Type entityType)
at System.Data.Entity.Internal.InternalContext.GetEntitySetAndBaseTypeForType(Type entityType)
at System.Data.Entity.Internal.Linq.InternalSet`1.Initialize()
at System.Data.Entity.Internal.Linq.InternalSet`1.Include(String path)
at System.Data.Entity.Infrastructure.DbQuery`1.Include(String path)
at Clubr.WebJobs.ClubListingSchedule.Services.GuestQuestionReminderService.<SendReminders>d__1.MoveNext() in C:\sourcecode\clbr\Source\Clubr.WebJobs.ClubListingSchedule\Services\GuestQuestionReminderService.cs:line 24
И код BaseService -
public class BaseReminderService
{
protected static IPushNotificationService NotificationService;
protected static ILoggerService LoggerService;
protected static ISMSService SmsService;
protected static ClubrContext DbContext;
public BaseReminderService(IPushNotificationService notificationService, ILoggerService loggerService, ClubrContext dbContext,
ISMSService smsService)
{
NotificationService = notificationService;
LoggerService = loggerService;
DbContext = dbContext;
SmsService = smsService;
}
}`
Теперь смотрите накод для BaseService, кажется, проблема в том, что из-за использования статической переменной!
Я держу вопрос открытым, поэтому я знаю, что я думаю правильно.(Плюс, если вы можете ответить, поскольку это статическая переменная, независимо от того, является ли она общей для нескольких процессов / потоков, которые могут работать параллельно!