You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
765 B
24 lines
765 B
using System;
|
|
using System.Data;
|
|
|
|
namespace Dapper
|
|
{
|
|
partial class DynamicParameters
|
|
{
|
|
sealed class ParamInfo
|
|
{
|
|
public string Name { get; set; }
|
|
public object Value { get; set; }
|
|
public ParameterDirection ParameterDirection { get; set; }
|
|
public DbType? DbType { get; set; }
|
|
public int? Size { get; set; }
|
|
public IDbDataParameter AttachedParam { get; set; }
|
|
internal Action<object, DynamicParameters> OutputCallback { get; set; }
|
|
internal object OutputTarget { get; set; }
|
|
internal bool CameFromTemplate { get; set; }
|
|
|
|
public byte? Precision { get; set; }
|
|
public byte? Scale { get; set; }
|
|
}
|
|
}
|
|
}
|
|
|