SWEETPONY
✅ How to make httpcontext threadsafe?
I have this:
I save these connections to ConcurrentDictionary, and when I need to send a message, I just find the connection from the dictionary and use SendEventAsync.
I don't know why, but sometimes I don't see that any events have been sent, and it looks like a race condition. What can I do about it?
6 replies
✅ How to make static field required to use from interface?
I have this interface:
HandledEvents
is static because I can easily read values from it using reflection and without Activator.CreateInstance
Processor example:
the main problem HandledEvents
can be easily removed from FlightEventProcessor
and nothing will happens. compilator allows me to not implement this array inside every classes that inherit IEventProcessor
7 replies
✅ I don't undertand the error: capacity was less than the current size
Hey I have two versions of code and second one doesn't work
first version:
second version:
second version always throws the exception:
Unhandled exception. System.AggregateException: One or more errors occurred. (capacity was less than the current size. (Parameter 'value')) (capacity was less than the current size. (Parameter 'value')) (capacity was less than the current size. (Parameter 'value')) (capacity was less than the current size.
17 replies
Error: The value of shadow key property 'ResourceDemandChunks.Id' is unknown when attempting to save
Hey everyone! I'm stuck with this problem: The value of shadow key property 'ResourceDemandChunks.Id' is unknown when attempting to save changes. This is because shadow property values cannot be preserved when the entity is not being tracked. Consider adding the property to the entity's .NET type
this is how I register entity in db context:
CustomData
is jsonb property, in DDL it is jsonb, I absolutely no idea what happening..
3 replies
✅ is there any way to delete items from the database and return the deleted list in one request?
is there any way to delete items from the database and return the deleted list in one request?
I can do something like this:
DbContext.T.Where(entity => ..).ExecuteDelete()
, but my business logic assumes that I will return items that were deleted
I can do this:
var deleted = DbContext.T.Where(entity => ..)
DbContext.RemoveRange(deleted)
but these are already two requests to database14 replies