Reputation: 66
I want to know if its possible to get a list of available commands for Entity Framework (or other NuGet installed packages) in package manager console?
Upvotes: 0
Views: 646
Reputation: 66
I've found the answer, you just need to type
PM> get-help entityframework
in Package Manager Console to see all available Entity-Framework commands.
here is the useful link about entityframework commands in Package Manager Console https://www.learnentityframeworkcore.com/migrations/commands/pmc-commands
Upvotes: 1