dapper is a micro-ORM, offering core parameterization and materialization services, but (by design) not the full breadth of services that you might expect in a full ORM such as LINQ-to-SQL or Entity Framework. Instead, it focuses on making the materialization as fast as possible, with no overheads ...

learn more… | top users | synonyms

15
votes
3answers
2k views

Performing Inserts and Updates with Dapper

I am interested in using Dapper - but from what I can tell it only supports Query and Execute. I do not see that Dapper includes a way of Inserting and Updating objects. Given that our project (most ...
13
votes
2answers
2k views

Is there any way using Dapper with SQL Stored Procedure

I am just impressed with the result of Dapper Micro ORM for stackoverflow.com. I am considering it for my new project and but I have one concern about that Some times my project reuires to have Stored ...
12
votes
1answer
548 views

Java Micro ORM equivalent

What would be the closest equivalent in Java to a Micro ORM such as Dapper, PetaPoco, Massive or CodingHorror?
10
votes
1answer
1k views

Dapper ORM paging and sorting

I am giving the Dapper ORM a try. I am able to query data from a table using the code below: Dim comments As List(Of Comment) Using conn = New SqlConnection(ConnectionString) conn.Open() ...
8
votes
2answers
195 views

dapper PropInfo Setter for inherited EntitySet from abstract class reference is null

I am trying to replace a nasty LINQ 2 SQL hit with some dapper queries to improve performanace. In doing so I have to weave a bunch of different objects together in order to create the big object ...
8
votes
2answers
298 views

Dapper mapping MySql BIT(1) data type to ulong instead of boolean

Please has anyone come across the above situation with Dapper and MySQL. In all my tables in MySQL (5.1), where the data type is BIT(1) or BIT, Dapper simply return such field as ulong (UInt64). I ...
7
votes
4answers
173 views

How do I call a stored procedure with unconventional parameters?

I'm attempting to integrate Red Gate's SQLBackup Pro software into my in-house backup software, written in C#. The natural way to do this is via their Extended Stored Procedure. The problems is that ...
7
votes
1answer
838 views

Clarification of Dapper Example Code

I'm trying to grok Dapper and seem to be missing something very fundamental, can someone explain the following code taken from the Dapper home page on Google code and explain why there is no From ...
7
votes
2answers
326 views

Session-Per-Request with SqlConnection / System.Transactions

I've just started using Dapper for a project, having mostly used ORMs like NHibernate and EF for the past few years. Typically in our web applications we implement session per request, beginning a ...
7
votes
1answer
791 views

Where to put sql when using dapper?

I'm using dapper for a mvc3 project at work, and I like it. However, how are you supposed to layer the application when using dapper? Currently I just have all my sql stuffed directly in the ...
6
votes
3answers
180 views

How to create an anonymous object with property names determined dynamically?

Given an array of values, I would like to create an anonymous object with properties based on these values. The property names would be simply "pN" where N is the index of the value in the array. ...
6
votes
1answer
189 views

How to implement generic IEnumerable or IDictionary to avoid CA1006?

Out of curiosity i would like to know how to best implement a class that could be used to avoid the CA1006 warning CA1006 : Microsoft.Design : Consider a design where 'IReader.Query(String, ...
6
votes
3answers
159 views

Does Dapper work on Mono?

We're thinking about moving over to Mono and I see that Dapper works with MySql. However this is with a ADO.NET provider. Does Mono/Linux have a MySql ADO.NET provider and does that work with Dapper? ...
6
votes
2answers
477 views

Dapper enum questions

I am experimenting with dapper. I have a class which has an enum and the values are stored as strings in the database This works with FluentNHibernate using GenericEnumMapper Is it possible to do ...
6
votes
1answer
956 views

Can't get multi-mapping to work in Dapper

Playing around with Dapper, I'm quite pleased with the results so far - intriguing! But now, my next scenario would be to read data from two tables - a Student and an Address table. Student table ...
5
votes
1answer
231 views

How to periodically flush dapper.net cache when used with SQL Server

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 ...
5
votes
5answers
1k views

Any good samples for getting started with Dapper?

I'm trying to get started with Dapper in an exisiting MVC3 project and although it looks very easy to use, I can't seem to find any tutorials on how to set it up intially. Any links or suggestions ...
5
votes
2answers
431 views

Does Dapper support SQL 2008 Table-Valued Parameters?

Does anyone know if is possible to pass table-valued parameter data to a stored procedure with Dapper?
5
votes
1answer
987 views

Dapper SqlMapper Selecting an aggregate object

Lets say that I have a series of objects that form an aggregate. public class C{ public string Details {get;set;} } public class B{ public string Details {get;set;} public List<C> Items ...
5
votes
1answer
500 views

Using Dapper to populate Enum properties

In using Dapper's Query() function, I am trying to fill in a class that has a property which is an enumerated value. In my database, this column is stored as a byte. However, in the class, they are ...
5
votes
1answer
581 views

How to name columns for multi mapping support in Dapper?

var sql = @"SELECT a.id AS `Id`, a.thing AS `Name`, b.id AS `CategoryId`, b.something AS `CategoryName` FROM .."; var products = connection.Query<Product, Category, ...
4
votes
1answer
114 views

Dapper dot net query in F#

I'm trying to use Dapper dot net in F# to perform a simple SQLite query. Dapper returns a collection of dynamic objects: using them in C# is straightforward, but from what I understood F# has no ...
4
votes
1answer
304 views

How do I perform an insert and return inserted identity with Dapper?

How do I perform an insert to database and return inserted identity with Dapper? I've tried something like this: string sql = "DECLARE @ID int; " + "INSERT INTO [MyTable] ([Stuff]) ...
4
votes
1answer
132 views

Dapper dynamic parameters throw a SQLException “must define scalar variable” when not using anonymous objects

(This code is using Dapper Dot Net in C#) This code works: var command = "UPDATE account SET priority_id = @Priority WHERE name = @Name"; connection_.Execute(command, new { Name = "myname", Priority ...
4
votes
1answer
300 views

Dapper - using multimapping with split points other than Id

I know this is similar to Correct use of Multimapping in Dapper, but I think it's slightly different. I have the following POCO structure: public class Customer { public int customerkey { get; ...
4
votes
2answers
178 views

how to convert Dictionary<dynamic, dynamic> to Dictionary<string, string> using Colllection.ToDictionary()

I am using Dapper to fetch a 2 column resultset into a dictionary. I noticed that intellisense shows me a .ToDictionary() when I hover over the resultset but I cannot get it to work since dapper uses ...
4
votes
1answer
238 views

Dynamic where clause in dapper

Is it possible to add and remove criteria on the fly with dapper? I need this to implement user driven filtering. It is not feasible to have a query for each filter as there are too many combinations. ...
4
votes
3answers
291 views

Is it possible to declare an anonymous type in C# with a variable/dynamic set of fields?

In C#, I would like to figure out if it's possible to declare an anonymous type where the fields are not known until run-time. For example, if I have a List of key/value pairs, can I declare an ...
4
votes
0answers
233 views

Dapper is throwing an invalid cast exception when trying to set a boolean value returned from MySQL

I have this class public class User { public int UserId { get; set; } public string UserName { get; set; } public bool IsValidated { get; set; } } And I'm populating it with this sql ...
4
votes
2answers
335 views

Using Dapper with Oracle stored procedures which return cursors

How would one go about using Dapper with Oracle stored procedures which return cursors? var p = new DynamicParameters(); p.Add("foo", "bar"); p.Add("baz_cursor", dbType: DbType.? , direction: ...
4
votes
1answer
241 views

Dapper - like operator using DynamicParameters

This works: var list = conn.Query<int>( "select Id from Person where Id in @ids", new { ids = new int[] { 1, 2, 3 } } ); This throws "No mapping exists from object type System.Int32[] to ...
4
votes
2answers
306 views

Unexpected behaviour with a multi-mapping query using Dapper.net

I've only just started looking at Dapper.net and have just been experimenting with some different queries, one of which is producing weird results that I wouldn't expect. I have 2 tables - Photos ...
4
votes
2answers
413 views

Dapper parameterised queries with LINQ autogenerated types

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 ...
4
votes
2answers
525 views

Using Dapper with Oracle

We use Oracle as our database provider and have looked into replacing some of our data access layer (hard to maintain, harder to merge XSD's) with a saner repository based pattern using Dapper at the ...
4
votes
1answer
594 views

Dapper and anonymous Types

Is it possible to use anonymous types with Dapper? I can see how you can use dynamic i.e. connection.Query<dynamic>(blah, blah, blah) is it then possible to do a .Select(p=> new { A, ...
4
votes
1answer
404 views

Does Dapper support the like operator?

Using Dapper-dot-net... The following yields no results in the data object: var data = conn.Query(@" select top 25 Term as Label, Type, ID from SearchTerms WHERE Term ...
3
votes
0answers
458 views

.Query<T> for a T with nested objects

is it possible to get dapper to instantiate nested objects, and if so, are there any examples of this in action? For most situations, .net primitives are sufficient for me, but not always. A hack ...
3
votes
0answers
129 views

dapper nuget 1.7 enums mapping

dapper always return first enums members (fail to maps) when upgrade to latest dapper nuget (v 1.7) (db is MySQL) CREATE TABLE `users_roles` ( `userId` INT(11) NOT NULL, `roleId` INT(11) NOT ...
3
votes
1answer
137 views

Generate a SQL clause using a Linq-to-Sql Expression

I would like to create a repository model that could take an Expression and use Linq-To-Sql to generate the required SQL statement. For example, I have a function such as this: // Possible criteria ...
3
votes
2answers
255 views

Dapper SqlMapperExtensions / Dapper.Contrib?

There seems to be a DapperExtensions project, but there is also a SqlMapperExtensions class in the Dapper project. Is there overlap? Is one preferred over the other? I can't find any documentation on ...
3
votes
1answer
277 views

How do I map lists of nested objects with Dapper

I'm currently using Entity Framework for my db access but want to have a look at Dapper. I have classes like this: public class Course{ public string Title{get;set;} public ...
3
votes
1answer
451 views

Correct use of Multimapping in Dapper

I'm trying to use the Multimapping feature of dapper to return a list of ProductItems and associated Customers. [Table("Product")] public class ProductItem { public decimal ProductID { get; ...
3
votes
1answer
131 views

Dapper performance results seem very similar on my machine

I ran the performance tests that came with the dapper source code: http://code.google.com/p/dapper-dot-net/ For the most part, the performance between the various data access methods were very very ...
3
votes
1answer
582 views

dapper -multi-mapping: flat sql return to nested objects

I have a company that contains an address object. The SQL return is flat, and I'm tring to get Query<> to load all the objects. cnn.Query<Company,Mailing,Physical,Company>("Sproc", ...
3
votes
1answer
159 views

Dapper - Sql to Object implicit cast from string to int

I'm using dapper and am having issues with casting a string value from the db to an int. Has anyone overriden the TypeMap to allow for this? Any suggestions would be great.
3
votes
1answer
261 views

Does Dapper support SQL 2008 Table-Valued Parameters 2?

I know that dapper can support TVF, but how do you send extra parameters along with TVF (without adding it to the IntDynamicParam class)? See the below example from Tests.cs, i have modified to add ...
3
votes
1answer
191 views

Dapper multiselect: Nested class primary key doesn't map unless using “AS”

I have two classes: class Foo{ public int FooId { get; set; } ... public Bar Bar { get; set } } class Bar{ public int BarId { get; set; } public int FooId { get; set } ... } ...
3
votes
1answer
170 views

Using Dapper with SQL Spatial Types as a parameter

I've got a system which basically has to do a query like this: SELECT * FROM MyTable WHERE @parameter.STIntersects(MyGeometryColumn) This is quite simple to do when using vanilla SQL parameters, ...
3
votes
1answer
500 views

Can the multimapping of Petapoco handle multiple JOINs?

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 ...
3
votes
1answer
866 views

How to insert an IEnumerable<T> collection with dapper-dot-net

Yep, there are questions here and here about how to insert records with dapper-dot-net. However, the answers, while informative, didn't seem to point me in the right direction. Here is the situation: ...

1 2 3