morry329#
✅ Rider does not recognise WebImage Helper
here's my csproj https://paste.mod.gg/acjqtvmvnrxa/0
I never used this paste tool before so I hope you can read it
8 replies
✅ the type or namespace name 'ListingProjects' does not exist in the namespace models
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)
32 replies
✅ the type or namespace name 'ListingProjects' does not exist in the namespace models
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
32 replies
✅ the type or namespace name 'ListingProjects' does not exist in the namespace models
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
32 replies
✅ the type or namespace name 'ListingProjects' does not exist in the namespace models
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
32 replies
Id points to always null
Could you kindly point me what went wrong here .. I mean I tried to map the controller to the cshtml but the id is still null at my controller
My controller https://pastebin.com/cSzKufsU
My cshtml https://pastebin.com/rwqSwMV2 <--- I even created a form tag to mark the form field with the same Id in controller. Still none of these helped
7 replies
The edit method does not edit the pre-existing data but it creates a new data entry with NULL
So my rider does not let me set any breakpoint in code (the point will get marked by 🚫 ), I did something like this as debug
[HttpGet]
public JsonResult EditListingJ(int? Id) //For getting details of the selected User
{
try
{
ListingProjectsDTO StartEditListing = _context.ListingDTO_DBTable.Find(Id);
Console.WriteLine("GET success");
return Json(StartEditListing);
}
catch (Exception e)
{
return null;
}
}
[HttpPost]
public JsonResult EditListingJ([FromForm]ListingProjectsDTO _completeEditNowListingProjectsDto)
{
try
{
_context.ListingDTO_DBTable.Update(_completeEditNowListingProjectsDto);
_context.SaveChanges();
Console.WriteLine("POST success");
return Json(_completeEditNowListingProjectsDto);
}
catch (Exception ex)
{
return Json(ex.Message);
}
}
This code returns both of Console.WriteLine("GET success") and Console.WriteLine("POST success");26 replies