Ignore AttributeProperty Name Property
This property is used when applied to a class or structure to specify a property name that should be
ignored that does not appear directly in the type such as an inherited property.
Definition
Namespace: EWSoftware.EntityFramework.DataAnnotations
Assembly: EWSoftware.EntityFramework (in EWSoftware.EntityFramework.dll) Version: 2025.11.12.0
Assembly: EWSoftware.EntityFramework (in EWSoftware.EntityFramework.dll) Version: 2025.11.12.0
C#
public string? PropertyName { get; set; }VB
Public Property PropertyName As String
Get
SetC++
public:
property String^ PropertyName {
String^ get ();
void set (String^ value);
}F#
member PropertyName : string with get, setProperty Value
StringRemarks
This allows excluding properties to which you do not have access and cannot apply the
attribute to directly.