I am evaluation dapper but i already running into some problems. I am trying to do this using (IDbConnection connection = GetConnection())
Given this snippet of code public abstract class Foo { private static Sql开发者_高级运维Connection _sqlConnection;
I\'m trying to commit a transaction to my Sql Server 2008 database - firstly 2 insert\'s followed by a couple update\'s, however, as soon as it attempts to execute the first of the update\'s, I get th
Not sure if I should raise an issue regarding this, so thought I would ask if anybody knew a simple workaround for this first. I am getting an error when I try to use Dapper with OleDbConnection when
I\'m trying to decide the best approach for a new project I\'m about to start on, when it comes to my model design (and I\'m using Dapper.net).
I\'m using Entity Framework to SQL Azure and in one page of my application we show quite a bit of related data to the user. We\'re loading a max of 30 ite开发者_Go百科ms on the page but each item has
I have following classes and db schema.I am trying to query this data from database using dapper that would hydrate the full object graph.I looked at various SO question and the test but couldn\'t rea
I just started playing around with Dapper. So far i love it. Does dapper not work with TransactionScope? I noticed that even if i never call TransactionScope.Complete then my changes are still committ
Can someone please explain what this means (from the Dapper.net website) Limitations and caveats Dapper caches information about every query it runs, this allow it to materialize objects quickly and
If I define a boolean data type in a Postgres table and query from it, the results for the boolean columns come back as \"t\" or \"f\".