_httpcontextAccessor.HttpContext.UpdateAskDate(askDate);
public static void UpdateAskDate(this HttpContext context, DateTime AskDate) => context.Items["AskDate"] = AskDate;
для сохранения даты, когда у меня есть запрос, _httpcontextAccessor регистрируется как синглтон, но у меня всегда есть эта ошибка, у вас есть идеи, почему?
GraphQL.ExecutionError: Error trying to resolve header. ---> System.InvalidOperationException: Operations that change non-concurrent collections must have exclusive access. A concurrent update was performed on this collection and corrupted its state. The collection's state is no longer correct.
at System.Collections.Generic.Dictionary`2.TryInsert(TKey key, TValue value, InsertionBehavior behavior)
at System.Collections.Generic.Dictionary`2.set_Item(TKey key, TValue value)
привет