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.
17 lines
510 B
17 lines
510 B
1 month ago
|
using System.Collections;
|
||
|
|
||
|
namespace Dapper
|
||
|
{
|
||
|
partial class DynamicParameters
|
||
|
{
|
||
|
// The type here is used to differentiate the cache by type via generics
|
||
|
// ReSharper disable once UnusedTypeParameter
|
||
|
internal static class CachedOutputSetters<T>
|
||
|
{
|
||
|
// Intentional, abusing generics to get our cache splits
|
||
|
// ReSharper disable once StaticMemberInGenericType
|
||
|
public static readonly Hashtable Cache = new Hashtable();
|
||
|
}
|
||
|
}
|
||
|
}
|