Unable to create a 'DbContext' of type ''. The exception 'The entity type 'SelectListGroup' requires
Hello,
everytime I want to create a migration I get this Error:
The funny thing is, I dont hae anywhere "SelectListGroup" defined like its nowhere.
Can someone help me there?
https://paste.mod.gg/pdgbqxsiwibr/2
BlazeBin - pdgbqxsiwibr
A tool for sharing your source code with the world!
15 Replies
please ping on reply
Do you use
SelectList
anywhere?
@Kasumi
It might be you use this in a class you use as a DB class. One solution is notating it with [NotMapped]
Please also share Idea
and ApplicationTag
Added
And yes I use SelectListItem for the TagList
Yes, put
NotMapped
there
EF will always attempt to store the object into the database and if it fails it throws
Consider using a separate class for DB data so this is avoided
Or is this supposed to be stored in the database?
Because if so, you need to update your fluent configurationWell now I get this:
To change the IDENTITY property of a column, the column needs to be dropped and recreated.
ut I already dropped it
Idk I'm just frusted and somehow get this working and trying everything I find / get recommended and so on
Well I can't help you with something you don't know
Previous point still stands, you should use separate classes for this
A bit of extra work but generally database classes look very different. Especially because EF does a lot of conventions based on how the class is formed
Yes, but its planned that the TagIds are Listed in the DB because why not?
Okay
you know a fix for that?
Btw it's weird to put DB Model and VM in a same class , you should make a separate folder for VM and put VM classes there to keep things organized
Well yes that's what I already mentioned, separate the concerns
DB class for the DB, not a view model that does both
Sorry idk
I think it's because you added an Id of type long
What did you do to get this error
Again, make a separate class and properly scaffold it
Alternatively try putting
[PrimaryKey]
above your idNothing, I just created the migration and and wanted to update the database
Well Scaffolding doesnt work either. The last time I used the scaffolding from VS it created everything but it saved nothing into the Database because it couldnt get the UserId because the Scaffold thing is too dumb to check that and add the code
I'd remove the migrations folder and would apply it and update the db from scratch
okay
Fixed thank you :love_bun:
$close
If you have no further questions, please use /close to mark the forum thread as answered