File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
using System . Data . Common ;
2
+ using NHibernate . Driver ;
2
3
using NHibernate . SqlTypes ;
3
- using NHibernate . Type ;
4
4
5
5
namespace NHibernate . AdoNet
6
6
{
7
- internal interface IParameterAdjuster
7
+ /// <summary>
8
+ /// Supports adjusting a <see cref="DbParameter"/> according to a <see cref="SqlType"/> and
9
+ /// the parameter's value. An <see cref="IDriver"/> may implement this interface.
10
+ /// </summary>
11
+ public interface IParameterAdjuster
8
12
{
13
+ /// <summary>
14
+ /// Adjust the provided parameter according to its <paramref name="sqlType"/> and
15
+ /// <paramref name="value"/>.
16
+ /// </summary>
17
+ /// <param name="parameter">The parameter to adjust.</param>
18
+ /// <param name="sqlType">The parameter's <see cref="SqlType"/>.</param>
19
+ /// <param name="value">The parameter's value.</param>
9
20
void AdjustParameterForValue ( DbParameter parameter , SqlType sqlType , object value ) ;
10
21
}
11
22
}
You can’t perform that action at this time.
0 commit comments