Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix up for .NET 6, fixes #108 #109

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Conversation

lol768
Copy link
Contributor

@lol768 lol768 commented Jun 24, 2022

No description provided.

@@ -159,7 +158,9 @@ private static object PostgreSqlCopyHelperFactory(IEntityType entityType)

var copyHelper = c.Invoke(new object[] {entityType.GetSchema(), QuoteIdentifier(entityType.GetTableName())});

var mapMethodInfo = copyHelper.GetType().GetMethod("Map", BindingFlags.Instance | BindingFlags.Public);
var mapMethodInfo = copyHelper.GetType().GetMethods().First(n =>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is horrible and it should be possible to use a GetMethod overload that takes an array of types. I couldn't get it to play ball though.


namespace TestConsoleApp;

public class BloggingContextFactory : IDesignTimeDbContextFactory<BloggingContext>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Had to add this to get the migrations to run, otherwise it couldn't create the BloggingContext.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant