You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the mapping with mapperly in the solution , named : public static partial class ApplicationUserMapper
cannot create correctly the nullable properties createdby , modifiedbuuser , superior . for single or Projected Iquerable values.
If you check the autogen file is using the same parent properties for createdby , modifiedbuuser , superior .
so even though you change it and its saved correctly in the database and the IQuerable returns correct data the mapper ignores completely the navigation property and maps the parent again i tried all walk arounds as mapperly suggests nothing worked .
ended do a typical and fast extension :
` public static IQueryable ProjectTo(this IQueryable q)
{
Also the modal for update user Superior doesnt work because the modal doesnt do anything besides send notification to blazor for ok. i have fixed it in my solution by updating the model with usermanager .
The text was updated successfully, but these errors were encountered:
the mapping with mapperly in the solution , named : public static partial class ApplicationUserMapper
cannot create correctly the nullable properties createdby , modifiedbuuser , superior . for single or Projected Iquerable values.
If you check the autogen file is using the same parent properties for createdby , modifiedbuuser , superior .
so even though you change it and its saved correctly in the database and the IQuerable returns correct data the mapper ignores completely the navigation property and maps the parent again i tried all walk arounds as mapperly suggests nothing worked .
ended do a typical and fast extension :
` public static IQueryable ProjectTo(this IQueryable q)
{
#nullable enable
}
`
Also the modal for update user Superior doesnt work because the modal doesnt do anything besides send notification to blazor for ok. i have fixed it in my solution by updating the model with usermanager .
The text was updated successfully, but these errors were encountered: