private string SafeGetValue()

in reference-implementations/semantic-search-for-images/src/ingestion/Services/CsvService.cs [95:103]


        private string SafeGetValue(DataRow row, string columnName) {
            if (row.Table.Columns.Contains(columnName))
            {
                return row[columnName].ToString()!;
            }

            return string.Empty;

        }