简体   繁体   中英

Where is the -ConfigurationTypeName located?

I'm trying to run a add-migration via my .net MVC project. There are two DBContext in a DBContext folder. However, when I run the command:

add-migration -ConfigurationTypeName xxxxx.Configuration -Name SavedSearches

it tells me:

The migrations configuration type 'xxxxx.Configuration' was not be found in the assembly 'xxxxx'.

Where do I find the proper name/namespace for the configuration type (ie what folder is it in, what level)? I've tried to search, but nothing clearly states it out.

Thank you.

From the Tools menu, click Library Package Manager and then Package Manager Console. At the PM> prompt enter the following commands:

  • enable-migrations
  • add-migration InitialCreate
  • update-database

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM