public static async Task <DataTable> DeserializeAsync(string json, JsonSerializerOptions options = null)
        {
            var result = new DataTable();
            await DataTableExtensions.FromJsonAsync(result, json, options);

            return(result);
        }
 public static async Task <string> SerializeAsync(DataTable dataTable, JsonSerializerOptions options = null) =>
 await DataTableExtensions.SerializeAsync(dataTable, options);