EntityCommandCompilationException Constructor

 

Initializes a new instance of the EntityCommandCompilationException class.

Namespace:   System.Data.Entity.Core
Assembly:  EntityFramework (in EntityFramework.dll)

NameDescription
System_CAPS_pubmethodEntityCommandCompilationException()

Initializes a new instance of EntityCommandCompilationException, no message, no inner exception. Probably shouldn't exist, but it makes FxCop happy.

System_CAPS_pubmethodEntityCommandCompilationException(String)

Initializes a new instance of EntityCommandCompilationException, with message, no inner exception. Probably shouldn't exist, but it makes FxCop happy.

System_CAPS_pubmethodEntityCommandCompilationException(String, Exception)

Initializes a new instance of EntityCommandCompilationException with message and an inner exception instance.


EntityCommandCompilationException Constructor ()

Initializes a new instance of EntityCommandCompilationException, no message, no inner exception. Probably shouldn't exist, but it makes FxCop happy.

public EntityCommandCompilationException()

EntityCommandCompilationException Constructor (String)

Initializes a new instance of EntityCommandCompilationException, with message, no inner exception. Probably shouldn't exist, but it makes FxCop happy.

public EntityCommandCompilationException(
	string message
)

Parameters

message
Type: System.String

The message.


EntityCommandCompilationException Constructor (String, Exception)

Initializes a new instance of EntityCommandCompilationException with message and an inner exception instance.

public EntityCommandCompilationException(
	string message,
	Exception innerException
)

Parameters

message
Type: System.String

The message.

innerException
Type: System.Exception

The inner exception.