You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using EF from F# requires several specific patterns that differ from C#, and wouldn't be obvious to a beginner. We should age a page summarizing those things.
DbSet auto-initialization is not supported (because of how F# works) - people need to explicitly initialize their DbSet properties (see #34356).
Use EF.Parameter() for parameterization (see #12841)
Use the external EFCore.FSharp package, especially for migrations and scaffolding (see discussion)
The text was updated successfully, but these errors were encountered:
Using EF from F# requires several specific patterns that differ from C#, and wouldn't be obvious to a beginner. We should age a page summarizing those things.
The text was updated successfully, but these errors were encountered: