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.
21 lines
540 B
21 lines
540 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
|
|
#if !NETCOREAPP
|
|
namespace Dapper
|
|
{
|
|
sealed class SqlDataRecordHandler : SqlMapper.ITypeHandler
|
|
{
|
|
public object Parse(Type destinationType, object value)
|
|
{
|
|
throw new NotSupportedException();
|
|
}
|
|
|
|
public void SetValue(IDbDataParameter parameter, object value)
|
|
{
|
|
SqlDataRecordListTVPParameter.Set(parameter, value as IEnumerable<Microsoft.SqlServer.Server.SqlDataRecord>, null);
|
|
}
|
|
}
|
|
}
|
|
#endif
|