Commit 886cf035 authored by Sam Saffron's avatar Sam Saffron

cleanup

parent 99b65fb3
...@@ -8,7 +8,6 @@ ...@@ -8,7 +8,6 @@
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.Collections.Generic; using System.Collections.Generic;
using System.Data; using System.Data;
using System.Diagnostics;
using System.Dynamic; using System.Dynamic;
using System.Linq; using System.Linq;
using System.Reflection; using System.Reflection;
...@@ -886,7 +885,7 @@ public void Dispose() ...@@ -886,7 +885,7 @@ public void Dispose()
} }
} }
} }
public class DynamicParameters : SqlMapper.IDynamicParameters, IEnumerable public class DynamicParameters : SqlMapper.IDynamicParameters
{ {
Dictionary<string, ParamInfo> parameters = new Dictionary<string,ParamInfo>(); Dictionary<string, ParamInfo> parameters = new Dictionary<string,ParamInfo>();
...@@ -941,10 +940,5 @@ public T Get<T>(string name) ...@@ -941,10 +940,5 @@ public T Get<T>(string name)
{ {
return (T)parameters[name].AttachedParam.Value; return (T)parameters[name].AttachedParam.Value;
} }
public IEnumerator GetEnumerator()
{
throw new NotImplementedException();
}
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment