Parameter Name Prefix AttributePrefix Property
This read-only property returns the parameter name prefix that will be applied to all stored
procedure parameters.
Definition
Namespace: EWSoftware.EntityFramework.DataAnnotations
Assembly: EWSoftware.EntityFramework (in EWSoftware.EntityFramework.dll) Version: 2025.11.12.0
As an example, if set to "param" and an entity property name is AccountKey, the stored procedure parameter name will be set to @paramAccountKey. If not defined on a data context the parameter will be named after the property (@AccountKey in the preceding example).
Assembly: EWSoftware.EntityFramework (in EWSoftware.EntityFramework.dll) Version: 2025.11.12.0
C#
public string Prefix { get; }VB
Public ReadOnly Property Prefix As String
GetC++
public:
property String^ Prefix {
String^ get ();
}F#
member Prefix : string with getProperty Value
StringAs an example, if set to "param" and an entity property name is AccountKey, the stored procedure parameter name will be set to @paramAccountKey. If not defined on a data context the parameter will be named after the property (@AccountKey in the preceding example).