DanTm99 commented on code in PR #34125: URL: https://github.com/apache/arrow/pull/34125#discussion_r1108236064
########## csharp/src/Apache.Arrow/Schema.cs: ########## @@ -22,32 +22,31 @@ namespace Apache.Arrow { public partial class Schema { - public IReadOnlyDictionary<string, Field> Fields - { - get => _fieldsDictionary; - } + [Obsolete("Use `FieldList` instead")] + public IReadOnlyDictionary<string, Field> Fields => _fieldsDictionary; Review Comment: @westonpace Exposing an `ILookup<string, Field>` alongside an `IReadOnlyList<Field>` would provide more flexibility to users. I think doing so could be a good idea -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org