You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it will work just fine for the following class file with properties
publicclassMyParquetTest{publicintName{get;set;}}
but for the struct with fields
publicstructMyParquetTest{publicintName;}
exception is thrown
System.ArgumentException: at least one field is required (Parameter 'fields')
would it be possible to add fields support? I feel like this is a needed feature, especially in the context of structs which by default usually do not contain properties.
The text was updated successfully, but these errors were encountered:
Issue description
is there an apparent reason why fields are not supported?
For example when saving the data:
it will work just fine for the following class file with properties
but for the struct with fields
exception is thrown
would it be possible to add fields support? I feel like this is a needed feature, especially in the context of structs which by default usually do not contain properties.
The text was updated successfully, but these errors were encountered: