CyberEgo
CyberEgo

Reputation: 66

How to get list of available commands for Entity Framework in package manager console

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

Answers (1)

CyberEgo
CyberEgo

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

Related Questions