Skip to content

Commit

Permalink
Merge branch 'release/8.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
ajcvickers committed Oct 5, 2023
2 parents 1cd05c7 + a8824e2 commit e2a801b
Show file tree
Hide file tree
Showing 2 changed files with 161 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,16 @@ public static void Create(
.IncrementIndent()
.Append(codeHelper.Expression(converter.ConvertToProviderExpression, parameters.Namespaces))
.AppendLine(",")
.Append(codeHelper.Expression(converter.ConvertFromProviderExpression, parameters.Namespaces))
.Append(codeHelper.Expression(converter.ConvertFromProviderExpression, parameters.Namespaces));

if (converter.ConvertsNulls)
{
mainBuilder
.AppendLine(",")
.Append("convertsNulls: true");
}

mainBuilder
.Append(")")
.DecrementIndent();
}
Expand Down
Loading

0 comments on commit e2a801b

Please sign in to comment.