Conversation
No docs yet.
roji
left a comment
There was a problem hiding this comment.
@ajcvickers I found some mapping issues here which explain most of the errors in #2487 - take a look below (but this also uncovered issues in my code!). We can iterate on this together tomorrow if you want.
| }); | ||
|
|
||
| entityTypeBuilder.DeleteUsingStoredProcedure( | ||
| "Person_Delete", |
There was a problem hiding this comment.
This mapping - and many others - is missing a rows affected result column definition; the sproc definition does return a result set with it (OUTPUT 1). This means that result sets in the batch can get misaligned as EF thinks this sproc doesn't return anything but it does.
|
@roji Pushed some updates. Updating data is still failing for TPH. Optimistic concurrency test 1 is still failing in all cases. |
|
Found two more bugs while investigating this:
I'll be back to full work on Tuesday (will be partially doing stuff on Monday too) and will concentrate on fixing all this (not feeling great about the work I've done here...) |
|
@ajcvickers just making sure that everything works for you and you're not blocked on me by anything. |
No docs yet.