Skip to content

Commit 97b652d

Browse files
author
Doug Schmidt
authored
Merge pull request #274 from DougSchmidt-AI/feature/PF-1235-MoreNwfwmdLabFileImporterFixes
PF-1235 - Fixed the extended attribute column naming
2 parents efe713a + 1bc4303 commit 97b652d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Samples/DotNetSdk/NWFWMD-LabFileImporter/CsvWriter.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ public void WriteObservations(StreamWriter writer, IEnumerable<ObservationV2> ob
4545
{nameof(ObservationV2.LabComment), "Lab: Comment"},
4646
{nameof(ObservationV2.QCType), "QC: Type"},
4747
{nameof(ObservationV2.QCSourceSampleID), "QC: Source Sample ID"},
48-
{nameof(ObservationV2.EARequestID), "EA: RequestId"},
49-
{nameof(ObservationV2.EASampler), "EA: Sampler"},
50-
{nameof(ObservationV2.EACollectionAgency), "EA: CollectionAgency"},
48+
{nameof(ObservationV2.EARequestID), "EA_RequestID"},
49+
{nameof(ObservationV2.EASampler), "EA_Sampler"},
50+
{nameof(ObservationV2.EACollectionAgency), "EA_Collection Agency"},
5151
};
5252

5353
writer.Write(CsvSerializer.SerializeToCsv(observations).Trim());

0 commit comments

Comments
 (0)