передаче другого объекта в конструктор тупо останавливается выполнение кода (прекращается). Ексепшна нет, в catch не ловится. Что это может быть? :)
Причина может быть в тебе!
Сам дотнет не вешается при этом?
По скидыванию кода — там много, так что для начала опишу суть. Есть dbService. public DbService(string configuration) { _configuration = configuration; lock (_locker) { var optionsBuilder = new DbContextOptionsBuilder<BaseContext>(); optionsBuilder.UseSqlServer(_configuration, option => option.EnableRetryOnFailure(2, TimeSpan.FromSeconds(30), null)); optionsBuilder.UseLazyLoadingProxies(false); var db = new BaseContext(optionsBuilder.Options); _db = db; _lazyDbService = new Lazy<DbService>(() => new DbService(_configuration)); } } protected virtual void Dispose(bool disposing) { if (!_disposed) if (disposing) _db.Dispose(); _disposed = true; } Есть вызов метода взаимодействия с БД: using (IDbService dbService = new DbService(_sourceConfiguration).DbServiceInstance) { var getSourceTemplate = await dbService.Templates.Get(sourceTemplateKey); .......... } Сам метод (фрагмент) : ............. try { var result = await _db.TemplateEntities .Where(t => t.Key == key && !t.IsDeleted) .Select(t => new TemplateEntity { Key = t.Key, Name = t.Name, Content = t.Content, CreatedUserKey = t.CreatedUserKey, FolderKey = t.FolderKey, WorkgroupKey = t.WorkgroupKey, IsPrivate = t.IsPrivate, IsDeleted = t.IsDeleted, UpdatedDateTimeUtc = t.UpdatedDateTimeUtc, CreatedDateTimeUtc = t.CreatedDateTimeUtc, User = t.User }).AsNoTracking().FirstOrDefaultAsync(); return result; ............... До строчки return result; банально не доходит. Не падает ни в один ексепшн. Просто прекращается выполнение.
Обсуждают сегодня