✅ the type or namespace name 'ListingProjects' does not exist in the namespace models
So I don't understand why my code has been getting this message.
It started when I added a new attribute to my model class in my CRUD app like this
My CRUD lets me create/delete/read my data out of my db, but only the edit operation fails. It does not save my edits as per screenshot
My debug shows this message
the type or namespace name 'ListingProjects' does not exist in the namespace models (are you missing a reference)
Could anyone kindly point me in the direction to resolve this bug?
21 Replies
where in ur code are u exactly getting this message
The error message complains about
ListingProjects
but your class is named ListingProjects_ver2
@morry329#.oops I forgot to post the pastebin link where the whole code is
https://pastebin.com/Fj82WLN2
My code is getting that message here
`
The return got that error
Pastebin
[HttpPost] public async Task EditListingJpost([FromForm] int Id ...
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
is your ListingProjects_ver2 in a namespace?
and did you put using that namespace in where ur trying to reference the class?
I found it strange that the error complains about ListingProjects --- my class is named ListingProjects_ver2 and it has no reference to ListingProjects. Any clue?
This is my whole code https://pastebin.com/Fj82WLN2
Pastebin
[HttpPost] public async Task EditListingJpost([FromForm] int Id ...
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
odd, i dont see
ListingProjects
anywhere
can u show the error message?
it should point out which file and which line is the error coming from`
So this is the snippet where this error popped in (in the controller class) . ListingProjects_ver2 is not in a namespace
Please give me some minutes I have to replicate the error
So this is where the error message came from (please see the attached mp4)
When I read InternalDbSet I can only think of that error coming from
`
This DB class -- it does have a DB table with ListingProject type, but not sure why it could be the culprit to this error
do u even have a class called ListingProjects defined?
yes
where?
here

so it has no namespace
is that class in a different project?
its fine if it has no namespace, it should detect it atleast, but im thinking that class is in a different project
no, it is in the same project
can u prove it
well you have the proof - the screenshot I just sent got the model folder. in there there are two model classes named ListingProjects (I don't use this anymore) and ListingProjects_ver2 (I use)
so the error thinks ListingProjects.cs is in the different project then?
where is your HomeController.cs ?
Under the Controller folder which is also pictured in my screenshot
i see but usually u cant run the program when there are compile errors
did you try to recompile the program?
if that didnt work try to put a proper namespace for ListingProjects class
namespace WebApplication1.Models;
i did - unload and load the project again, dotnet build
everything worked without the error
if ur done type
/close
to mark the thread as solved