about_EntityFramework6.help.txt 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ___
  2. / __|
  3. ___ ___ | |__
  4. | __|| __| | _ \
  5. | _| | _| | |_| |
  6. |___||_| \___/
  7. TOPIC
  8. about_EntityFramework6
  9. SHORT DESCRIPTION
  10. Provides information about Entity Framework commands.
  11. LONG DESCRIPTION
  12. This topic describes the Entity Framework commands. Entity Framework is
  13. Microsoft's recommended data access technology for new applications.
  14. The following Entity Framework cmdlets are used with Entity Framework
  15. Migrations.
  16. Cmdlet Description
  17. ----------------- ---------------------------------------------------
  18. Enable-Migrations Enables Code First Migrations in a project.
  19. Add-Migration Scaffolds a migration script for any pending model
  20. changes.
  21. Update-Database Applies any pending migrations to the database.
  22. Get-Migrations Displays the migrations that have been applied to
  23. the target database.
  24. The following Entity Framework cmdlets are used by NuGet packages that
  25. install Entity Framework providers. These commands are not usually used as
  26. part of normal application development.
  27. Cmdlet Description
  28. ------------------------------ ---------------------------------------
  29. Add-EFProvider Adds or updates an Entity Framework
  30. provider entry in the project config
  31. file.
  32. Add-EFDefaultConnectionFactory Adds or updates an Entity Framework
  33. default connection factory in the
  34. project config file.
  35. SEE ALSO
  36. Enable-Migrations
  37. Add-Migration
  38. Update-Database
  39. Get-Migrations