diff --git a/Data_Coupler/Data_Coupler.csproj b/Data_Coupler/Data_Coupler.csproj
index 74e8e6a..157525b 100644
--- a/Data_Coupler/Data_Coupler.csproj
+++ b/Data_Coupler/Data_Coupler.csproj
@@ -11,4 +11,9 @@
Connetti database e servizi REST per il trasferimento dati
- - -| # | + @foreach (var column in fileSheets[selectedSheet]) + { +@column | + } +
|---|---|
| @absoluteRowIndex | + @foreach (var column in fileSheets[selectedSheet]) + { + var cellValue = row.ContainsKey(column) ? row[column]?.ToString() : ""; + var displayValue = string.IsNullOrEmpty(cellValue) ? "-" : + (cellValue.Length > 50 ? cellValue.Substring(0, 50) + "..." : cellValue); ++ @displayValue + | + } +
Configura il mapping tra i campi del database e le proprietà dell'entità REST
+Configura il mapping tra i campi della fonte dati e le proprietà dell'entità REST