I am trying to learn how to use Dapper.Extension but after multiple attempts installing and reinstalling the nuget package. I can't get the namespace to resolve and usable. I am creating a generic repository but when i attempt to include the namespace, VS doesn't even see it. I have looked all over their documentation and install guides but can't see anyone else having this issue. Is there something stupid i am over looking? See my Find method below using the extension.
public T Find(int id)
{
using(var conn = _ConnectionFactory.GetConnection())
{
return conn.Get<T>(id);
}
}
To test I used VS 2015:
Here is the test code: