Skip to content

Commit 74e4320

Browse files
Fix the Dollar prefixed columns during serialization
1 parent 8c73c88 commit 74e4320

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/Core/Services/MetadataProviders/Converters/DatabaseObjectConverter.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ public override void Write(Utf8JsonWriter writer, DatabaseObject value, JsonSeri
6565
// Add other properties of DatabaseObject
6666
foreach (PropertyInfo prop in value.GetType().GetProperties())
6767
{
68+
// Skip the TypeName property, as it has been handled above
6869
if (prop.Name == TYPE_NAME)
6970
{
7071
continue;

0 commit comments

Comments
 (0)