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.
16 lines
510 B
16 lines
510 B
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();
|
|
}
|
|
}
|
|
}
|
|
|