morry329#
morry329#
CC#
Created by morry329# on 3/21/2025 in #help
✅ Rider does not recognise WebImage Helper
I assume my modern asp.net application cannot work with those attributes like WebImage or IsPost, is that correct? So my best bet is maybe working with IFormImage?
8 replies
CC#
Created by morry329# on 3/21/2025 in #help
✅ 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
CC#
Created by morry329# on 3/21/2025 in #help
✅ Rider does not recognise WebImage Helper
No description
8 replies
CC#
Created by morry329# on 3/15/2025 in #help
✅ the type or namespace name 'ListingProjects' does not exist in the namespace models
i did - unload and load the project again, dotnet build everything worked without the error
32 replies
CC#
Created by morry329# on 3/15/2025 in #help
✅ the type or namespace name 'ListingProjects' does not exist in the namespace models
Under the Controller folder which is also pictured in my screenshot
32 replies
CC#
Created by morry329# on 3/15/2025 in #help
✅ the type or namespace name 'ListingProjects' does not exist in the namespace models
so the error thinks ListingProjects.cs is in the different project then?
32 replies
CC#
Created by morry329# on 3/15/2025 in #help
✅ 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
CC#
Created by morry329# on 3/15/2025 in #help
✅ the type or namespace name 'ListingProjects' does not exist in the namespace models
no, it is in the same project
32 replies
CC#
Created by morry329# on 3/15/2025 in #help
✅ the type or namespace name 'ListingProjects' does not exist in the namespace models
No description
32 replies
CC#
Created by morry329# on 3/15/2025 in #help
✅ the type or namespace name 'ListingProjects' does not exist in the namespace models
yes
32 replies
CC#
Created by morry329# on 3/15/2025 in #help
✅ 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
namespace WebApplication1.Data;

public class ApplicationDbContext : IdentityDbContext<PortalUsers>
{
public ApplicationDbContext(){}
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
: base(options)
{
}

public Microsoft.EntityFrameworkCore.DbSet<PortalUsers> UsersDBTable { get; set; }
//public Microsoft.EntityFrameworkCore.DbSet<Category> CategoriesDBTable { get; set; }
public Microsoft.EntityFrameworkCore.DbSet<ListingProjects> ListingDBTable { get; set; }
//public Microsoft.EntityFrameworkCore.DbSet<Location> LocationDBTable { get; set; }
public Microsoft.EntityFrameworkCore.DbSet<ListingProjects_ver2> ListingVer2_DBTable { get; set; }
public Microsoft.EntityFrameworkCore.DbSet<ListingDtoEditClass> ListingDtoEdit_DBTable { get; set; }


}
namespace WebApplication1.Data;

public class ApplicationDbContext : IdentityDbContext<PortalUsers>
{
public ApplicationDbContext(){}
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
: base(options)
{
}

public Microsoft.EntityFrameworkCore.DbSet<PortalUsers> UsersDBTable { get; set; }
//public Microsoft.EntityFrameworkCore.DbSet<Category> CategoriesDBTable { get; set; }
public Microsoft.EntityFrameworkCore.DbSet<ListingProjects> ListingDBTable { get; set; }
//public Microsoft.EntityFrameworkCore.DbSet<Location> LocationDBTable { get; set; }
public Microsoft.EntityFrameworkCore.DbSet<ListingProjects_ver2> ListingVer2_DBTable { get; set; }
public Microsoft.EntityFrameworkCore.DbSet<ListingDtoEditClass> ListingDtoEdit_DBTable { get; set; }


}
` 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
CC#
Created by morry329# on 3/15/2025 in #help
✅ the type or namespace name 'ListingProjects' does not exist in the namespace models
Please give me some minutes I have to replicate the error
32 replies
CC#
Created by morry329# on 3/15/2025 in #help
✅ the type or namespace name 'ListingProjects' does not exist in the namespace models
using System.Diagnostics;
using System.Text.Json;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using WebApplication1.Data;
using WebApplication1.Models;
using JsonException = Newtonsoft.Json.JsonException;

namespace WebApplication1.Controllers; //no, I did not put the ListingProject here

public class HomeController : Controller
{

private readonly ApplicationDbContext _context;
private ListingProjects_ver2 _listingProjectsDto;

/* all the other codes ... */
using System.Diagnostics;
using System.Text.Json;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using WebApplication1.Data;
using WebApplication1.Models;
using JsonException = Newtonsoft.Json.JsonException;

namespace WebApplication1.Controllers; //no, I did not put the ListingProject here

public class HomeController : Controller
{

private readonly ApplicationDbContext _context;
private ListingProjects_ver2 _listingProjectsDto;

/* all the other codes ... */
` So this is the snippet where this error popped in (in the controller class) . ListingProjects_ver2 is not in a namespace
32 replies
CC#
Created by morry329# on 3/15/2025 in #help
✅ 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
CC#
Created by morry329# on 3/15/2025 in #help
✅ 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
public async Task<JsonResult> EditListingJpost([FromForm] int Id, [FromForm] string ListingName, [FromForm] IFormFile ListingImage)
{

var listingToUpdate = await _context.ListingVer2_DBTable.FirstOrDefaultAsync(s => s.Id == Id);

if (listingToUpdate == null) //not null, so this check was passed
{
return Json(new { success = false, message = "Listing not found." });
}

/* my problem lies here - the await check was not passed which means my change was not saved into DB */
if (await TryUpdateModelAsync<ListingProjects_ver2>(listingToUpdate, "", s => s.ListingName))
{
try
{

await _context.SaveChangesAsync();
return Json(new { success = true, updatedListing = listingToUpdate });
}
catch (DbUpdateException)
{
return Json(new { success = false, message = "Unable to save changes." });
}
}
/* as my change was not saved via await above, the debug directly went this return. the error (the type or namespace name 'ListingProjects' does not exist in the namespace models (are you missing a reference)) points here */
return Json(listingToUpdate);
}
public async Task<JsonResult> EditListingJpost([FromForm] int Id, [FromForm] string ListingName, [FromForm] IFormFile ListingImage)
{

var listingToUpdate = await _context.ListingVer2_DBTable.FirstOrDefaultAsync(s => s.Id == Id);

if (listingToUpdate == null) //not null, so this check was passed
{
return Json(new { success = false, message = "Listing not found." });
}

/* my problem lies here - the await check was not passed which means my change was not saved into DB */
if (await TryUpdateModelAsync<ListingProjects_ver2>(listingToUpdate, "", s => s.ListingName))
{
try
{

await _context.SaveChangesAsync();
return Json(new { success = true, updatedListing = listingToUpdate });
}
catch (DbUpdateException)
{
return Json(new { success = false, message = "Unable to save changes." });
}
}
/* as my change was not saved via await above, the debug directly went this return. the error (the type or namespace name 'ListingProjects' does not exist in the namespace models (are you missing a reference)) points here */
return Json(listingToUpdate);
}
` The return got that error
32 replies
CC#
Created by morry329# on 2/13/2025 in #help
Id points to always null
Could you kindly point out which type in which input exactly you mean ? Please just point out which line out of the following cshtml
<div id="EditDashboardNow" method="post" name="editSubmitId">
<form method="post" asp-route="Form" id="editSubmitId" name="editSubmitId">
@using (Html.BeginForm("EditListingJpost", "Home", FormMethod.Post, new { @class = "ListingProjectsDTO", @id = "MyId", enctype = "multipart/form-data" }))
{
<div class="listing form-horizontal">
<div><img class="listingPhoto" src="~/imgSearchHome/IMG_20220102_161928.jpg"/></div>
<div class="content">
<input type="hidden" id="EditIdButHidden" name="EditIdButHidden"/>
<input type="hidden" id="editPropertyName" name="editPropertyName"/>
<p>Property Name:
<div class="form-group">
<input class="form-control" type="text" id="editPropertyName" name="editSubmitId"/>
<p>try this form also</p>
<input class="form-control" type="text" name="editSubmitId"/>
</div>
<picture>I am the EditDashboard now</picture>
</p>

<div>
<button type="button" id="btnSaveEdit" value="Save" onclick="EditListingJpost(@listingMd.Id)">Save</button>

<div id="EditDashboardNow" method="post" name="editSubmitId">
<form method="post" asp-route="Form" id="editSubmitId" name="editSubmitId">
@using (Html.BeginForm("EditListingJpost", "Home", FormMethod.Post, new { @class = "ListingProjectsDTO", @id = "MyId", enctype = "multipart/form-data" }))
{
<div class="listing form-horizontal">
<div><img class="listingPhoto" src="~/imgSearchHome/IMG_20220102_161928.jpg"/></div>
<div class="content">
<input type="hidden" id="EditIdButHidden" name="EditIdButHidden"/>
<input type="hidden" id="editPropertyName" name="editPropertyName"/>
<p>Property Name:
<div class="form-group">
<input class="form-control" type="text" id="editPropertyName" name="editSubmitId"/>
<p>try this form also</p>
<input class="form-control" type="text" name="editSubmitId"/>
</div>
<picture>I am the EditDashboard now</picture>
</p>

<div>
<button type="button" id="btnSaveEdit" value="Save" onclick="EditListingJpost(@listingMd.Id)">Save</button>

`
7 replies
CC#
Created by morry329# on 2/13/2025 in #help
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
CC#
Created by morry329# on 2/8/2025 in #help
The edit method does not edit the pre-existing data but it creates a new data entry with NULL
With FromBody I always get the server responded with a status of 415 (Unsupported Media Type) That's why I went with FromForm to get rid of this error
26 replies
CC#
Created by morry329# on 2/8/2025 in #help
The edit method does not edit the pre-existing data but it creates a new data entry with NULL
Still, the edited input will not get saved and the DB gets the NULL entry just like before
26 replies
CC#
Created by morry329# on 2/8/2025 in #help
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