-
Notifications
You must be signed in to change notification settings - Fork 445
Case issues #73
Comments
The workaround described here does not seem to work. |
I found a very ugly workaround. In my hub before returning any object I call the following function on it:
PS (not related to this issue but FYI): issue number 71 seems to be one of the biggest show-stoppers at the moment. Would be nice if arbitrary large objects can be transferred soon! |
@rhegner What version of SignalR are you using? The article you pointed to was based on the old SignalR repo you can find here - https://github.com/signalr/signalr Still, could you provide something I can take a look at? Thanks! |
I worked around this issue by using my own
then registering as follows..
|
Tracked by #261 |
Let's say we have a model like this on the server side:
A Asp.Net Core Controller serializes this to a JSON with 'firstName' and 'lastName'. So all my client-side classes use this convention.
I realized that SignalR serializes this to 'FirstName' and 'LastName'. This means I can't re-use my client-side classes.
The text was updated successfully, but these errors were encountered: