I\'d like to use Dapper in a situation where the execution of a single stored procedure will return 50 multiple separate selects, none of the individual result sets will be very wide, maybe 20 or 30 c
This works: var list = conn.Query<int>( \"select Id from Person where Id in @ids\", new { ids = new int[] { 1, 2, 3 } }
I have a list objects I use to fill using Petapoco. The class properties and names are maching the database schema. The main class is Issue, and it is related to two other classes which names and pro
I\'m using a combination of LINQ and Dapper in my work.I\'m replacing my LINQ code with Dapper in places for performance reasons.I have a lot of LINQ data objects created by dragging and dropping into
Would dapper have any problems with using two IDbConnection objects for distribu开发者_如何学Cting Writes and Reads between MySQL Master/Slaves?No, not at all.
I\'m using Dapper against a database where strings are stored primarily in VarChar columns. By default Dapper uses NVarChar parameters when generating queries and while I can wrap each and every 开发者
I\'ve been playing around with this for a bit, because it seems like it feels a lot like the documented posts/users example, but its slightly different and isn\'t working for me.
I am writing some code that will prepare my database for my application. In the code there are some repetitive SQL statements when I am creating a table, and I want to hide them in some methods (there
Does anyone know if is possible to pass table-valued parameter data to a stored procedure 开发者_开发百科with Dapper? There is now (n Dapper 1.26 and higher) direct support for table-valued parameters
I\'ve just started using Dapper for a project, having mostly used ORMs like NHibernate and EF for the past few years.