@@ -60,35 +60,35 @@ public object ExecuteScalar()
60
60
61
61
public IDbConnection Connection
62
62
{
63
- get { return dbCmd . Connection ; }
64
- set { dbCmd . Connection = value ; }
63
+ get => dbCmd . Connection ;
64
+ set => dbCmd . Connection = value ;
65
65
}
66
66
public IDbTransaction Transaction
67
67
{
68
- get { return dbCmd . Transaction ; }
69
- set { dbCmd . Transaction = value ; }
68
+ get => dbCmd . Transaction ;
69
+ set => dbCmd . Transaction = value ;
70
70
}
71
71
public string CommandText
72
72
{
73
- get { return dbCmd . CommandText ; }
74
- set { dbCmd . CommandText = value ; }
73
+ get => dbCmd . CommandText ;
74
+ set => dbCmd . CommandText = value ;
75
75
}
76
76
public int CommandTimeout
77
77
{
78
- get { return dbCmd . CommandTimeout ; }
79
- set { dbCmd . CommandTimeout = value ; }
78
+ get => dbCmd . CommandTimeout ;
79
+ set => dbCmd . CommandTimeout = value ;
80
80
}
81
81
public CommandType CommandType
82
82
{
83
- get { return dbCmd . CommandType ; }
84
- set { dbCmd . CommandType = value ; }
83
+ get => dbCmd . CommandType ;
84
+ set => dbCmd . CommandType = value ;
85
85
}
86
86
public IDataParameterCollection Parameters => dbCmd . Parameters ;
87
87
88
88
public UpdateRowSource UpdatedRowSource
89
89
{
90
- get { return dbCmd . UpdatedRowSource ; }
91
- set { dbCmd . UpdatedRowSource = value ; }
90
+ get => dbCmd . UpdatedRowSource ;
91
+ set => dbCmd . UpdatedRowSource = value ;
92
92
}
93
93
94
94
public IDbCommand DbCommand => dbCmd ;
0 commit comments