Class DbCommandInfo
A class that is used then reporting data-errors, the class holds information from the System.Data.Common.DbCommand object used in the query.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
Namespace: IRM.Data
Assembly: IRM.dll
Syntax
[Serializable]
public class DbCommandInfo
Properties
CommandText
Gets or sets the commandtext used in the query.
Declaration
public string CommandText { get; set; }
Property Value
String
The commandtext used in the query. |
DbParameterInfos
Gets or sets the name and the values of the parameters used in the query.
Declaration
public List<DbParameterInfo> DbParameterInfos { get; set; }
Property Value
List<DbParameterInfo>
The name and the values of the parameters used in the query. |