efcore / EFCore.FSharp

Adds F# design-time support to EF Core
MIT License
234 stars 26 forks source link

Fix formatting of Nullable parameters #106

Closed LiteracyFanatic closed 3 years ago

LiteracyFanatic commented 3 years ago

Proposed Changes

This fixes some weird formatting I saw in a generated migration file.

migrationBuilder.AddColumn<string>(
    name = "DisplayName"
    ,table = "SocialProfiles"
    ,``type`` = "nvarchar(100)"
    , maxLength = Nullable(100),nullable = true
    ) |> ignore

Types of changes

What types of changes does your code introduce to EFCore.FSharp?

Checklist

simon-reynolds commented 3 years ago

That's great, thank you for contributing!