-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
deserializing to DataSet returns 0 tables #31795
Comments
Related to https://github.com/dotnet/runtime/issues/29959#issuecomment-503876056. "DataTable and related types" are not supported in .NET Core 3. I would assume that since |
There are some kind of serializations that do not exist in system.text.json by default. you should add them manually , and for this there are two patterns : the basic pattern and the factory pattern
|
Closing as duplicate of https://github.com/dotnet/runtime/issues/29959. |
when I use this method
var ds = System.Text.Json.JsonSerializer.Deserialize(json);
the dataset has gets no tables and stays empty.
The text was updated successfully, but these errors were encountered: