Results 7 comments of Chris Tracy

Also base image is outside support, no new mssql-tools updated release for SQL 2019. Is mssql-tools image unsupported?

For Kafka projects a sample of enterprise style configuration (dev, staging, and production configuration for brokers/bootstrap, not just hard-coded "localhost:5092"). Other possible candidates for config: # workers, batch size, batch...

My tables are also "without tz", saved as UTC. They are being correctly shifted to local time in results grid, but I would like option to turn this off (display...

Please prioritize Excel (*.xlsx) over other data sources. The file format has been openly documented since 2007. Any design or usability justification for supporting xlsx for export but not import?

Just a drive-by, but heard of [Surma's Comlink](https://github.com/GoogleChromeLabs/comlink)? If you haven't thought about the memory implications of caching objects between worker and UI threads then Comlink implementation might be ahead...

> ... I wrote a really high performance implementation of the parsing and object layers and then found that the moment I started trying to access the database it absolutely...

LINQ does not support null-coalescing operator, so this is NOT possible: `query.Search(p => p.ClosedDate?.ToString() ?? "");` which leads to a lot of duplicated code like this: `query.Search(p => p.ClosedDate ==...