An [NotMapped] field of model causes difficulties in the editor

Dear Radzen Team,

How can you solve the problem with the [NotMapped] field in the model?

  namespace nnn.Models.n
    {
        public partial class Project
        {
            [NotMapped]
            public string FullName { get; set; }
        }
    }

Inconvenience only in the editor. The project is build without problems.

Thank you!

Does this work if you restart Radzen? Sometimes the code analysis does not kick in and Radzen remains unaware of the new property.

1 Like

Indeed, if you completely close the application and open it, then everything is in order.
Thanks you.