DbValidationError-Konstruktor
[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]
Erstellt eine Instanz von DbValidationError.
Namespace: System.Data.Entity.Validation
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
Public Sub New ( _
propertyName As String, _
errorMessage As String _
)
'Usage
Dim propertyName As String
Dim errorMessage As String
Dim instance As New DbValidationError(propertyName, _
errorMessage)
public DbValidationError(
string propertyName,
string errorMessage
)
public:
DbValidationError(
String^ propertyName,
String^ errorMessage
)
new :
propertyName:string *
errorMessage:string -> DbValidationError
public function DbValidationError(
propertyName : String,
errorMessage : String
)
Parameter
- propertyName
Typ: System.String
Name der ungültigen Eigenschaft. Kann NULL sein.
- errorMessage
Typ: System.String
Validierungsfehlermeldung. Kann NULL sein.