Class BeforePreparingStatementEventArgs
event args for the BeforePreparingStatement Event of dbcursor
Inheritance
System.Object
    BeforePreparingStatementEventArgs
  Namespace: Simplic.Framework.DAL
Assembly: Simplic.Framework.DAL.dll
Syntax
public class BeforePreparingStatementEventArgs : EventArgs
  Constructors
| Improve this Doc View SourceBeforePreparingStatementEventArgs(String, String, Object[])
event args for the BeforePreparingStatement Event of dbcursor
Declaration
public BeforePreparingStatementEventArgs(string sqlStatement, string connectionName, params object[] parameters)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | sqlStatement | |
| System.String | connectionName | |
| System.Object[] | parameters | 
Properties
| Improve this Doc View SourceConnectionName
connectionname for the dbconnection
Declaration
public string ConnectionName { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
NamedParameters
Declaration
public IDictionary<string, object> NamedParameters { get; set; }
  Property Value
| Type | Description | 
|---|---|
| IDictionary<System.String, System.Object> | 
Parameters
paremeter for the current sql statement
Declaration
public object[] Parameters { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Object[] | 
SqlStatement
current sql statement
Declaration
public string SqlStatement { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String |