dapper is the micro-ORM for .NET developed and used by the stackoverflow team, focusing on raw performance as the primary aim.

learn more… | top users | synonyms

2
votes
1answer
28 views

Why is reading a Dapper IEnumerable(dynamic) an order of magnitude slower than reading an IEnumerable(IDataRecord)?

In comparing Dapper with the Enterprise Library Data Access Access block for getting data via stored procedure. I see an overall performance benefit of about 40% when using Dapper, which is somewhat ...
1
vote
0answers
14 views

Can MiniProfiler profile transactions

I am able to get Miniprofiler to work with the following dapper statement var connString = ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString; var conn = new ...
2
votes
1answer
31 views

Using Breeze.js with Dapper

I am considering using Breeze.js for a client-side SPA project, but using Dapper ORM instead of Entity Framework for the server-side data access. I know Breeze.js is marketed as not relying on EF, ...
1
vote
0answers
30 views

ServiceStack MARS (Multiple Active Result Sets) using ORMLite and Output Parameters

ServiceStack ORMLite is great, I've typically steered clear of the ORM mentality preferring to build databases as it makes sense to build databases instead of a 1:1 class model. That said, there are ...
1
vote
1answer
36 views

Is there a Dapper executenonquery? How do I know if my update worked?

So I have a simple update using Dapper: using (var conn = new SqlConnection(myConnectionString)) { conn.Open(); conn.Execute("UPDATE Orders SET Exported=1 WHERE ...
0
votes
1answer
33 views

Dapper - Object reference not set to an instance of an object

I've recently been playing around with dapper, but I've run into a bit of a problem regarding getting data from other tables. My database has two tables, Users and Post. I've created two classes for ...
0
votes
0answers
21 views

Using Dapper to get bit field with mysql

I am using Dapper to get a field - IsAdmin(bit) However, I am receiving this error: Error parsing column 5 (IsAdmin=1 - UInt64) How can I use object to map bit field?
0
votes
1answer
24 views

Inserting into Table 'User' with Dapper.Rainbow

I am using Dapper.Rainbow and have come across an issue when inserting into a table named 'User'. I can get other tables to work perfectly, but when try to insert to the Users table it will fail. I ...
2
votes
2answers
43 views

Does Dapper support Enums?

I have a class User where Role is enum with values: Employee, Admin etc... Dapper throws an exception: "The member Role of type System.Enum cannot be used as a parameter value" Does dapper support ...
2
votes
1answer
34 views

SqlDateTimeOverflow exception with nullable DateTime fields with Dapper update

I have a db table with several DateTime fields with null values. These are mapped to nullable DateTimes in my class. If I try to perform an update with Dapper, within my data layer: using ...
0
votes
1answer
40 views

Dapper with multimapping using stored procedure

This is regarding Dapper in ASP.NET MVC3. I have two tables tblBranchMaster, tblZoneMaster in my database and two class file with same details. tblBranchMaster(ID, ZoneID, Name); tblZoneMaster(ID, ...
1
vote
1answer
66 views

Dapper.NET mapping with Data Annotations

So I have a class with a property like this: public class Foo { [Column("GBBRSH") public static string Gibberish { get; set;} .... } For saving data, I have it configured so that the ...
3
votes
1answer
55 views

Dapper.Net: IEnumerable<long> parameter throws exception: No mapping exists from object type System.Int64[] to a known managed provider native type

I am using Dapper.Net against SQL Server 2008 R2 in the following code to pass a List<long> parameter to run a SQL query that has a WHERE IN clause, but I get the exception: No mapping exists ...
2
votes
1answer
76 views

What POCO entities generator utilities exist for DAPPER?

I am switching a repository layer from linq to dapper. In linq, I can use the SqlMetal.exe tool to generate the database entities and relationships. Is there a tool or utility that will generate ...
0
votes
2answers
24 views

Map two objects in an update query

Dapper is able to map this query to the car object. It knows which property in the car goes to which variable in the query. Car car = new Car(); conn.Execute( "UPDATE CAR" + " SET ...
1
vote
1answer
62 views

Invalid cast with dapper and decimal(10,2)

The following code give me invalid cast operation. The Qty column in my MS Sql server is of type decimal(10,2) #region SQL Syntax var sql = "select qty from productarticle where ...
0
votes
0answers
26 views

Can I insert an entity with a populated guid id using dapper extensions?

Dapper extensions seems to insist on populating guid Id properties - even if they aren't empty guids. Is there a way to override this behaviour?
4
votes
1answer
53 views

Can I return a collection of multiple Derived Types from Dapper query

I have a class structure similar to this: public abstract class Device { public int DeviceId { get; set; } //Additional Properties } public class DeviceA : Device { //Specific Behaviour ...
4
votes
1answer
152 views

Grouping Lambda Expressions by Operators and Using Them With DapperExtensions' PredicateGroups

Pursuant to my previous question: Pulling Apart Expression<Func<T, object>> - I am trying to make it a bit more advanced. Currently, I can do this: var matchingPeople = ...
2
votes
3answers
211 views

How to convert List<Dapper.SqlMapper.FastExpando> to runtime type (List<IDictionary<string,object>>)

I'm using a method that has a return signatur of IEnumerable<dynamic>. At runtime for a particular call it is returning List<Dapper.SqlMapper.FastExpando>. var x0 = repo.Find(proc, ...
1
vote
1answer
90 views

Dapper custom helper (for Table-Valued Parameters) comma instead of dot in floating point value

Code from Does Dapper support SQL 2008 Table-Valued Parameters? works great. But with MSSQL SQL_VARIANT column comes (usually) the trouble... private static string ConnectionString = @"data ...
2
votes
1answer
94 views

Table Value Parameter with Dapper stored procedures

I am attempting to call a stored procedure that accepts a table valued parameter. I am following guidelines on this question, implementing a custom parameter type: internal class IntDynamicParam { ...
2
votes
1answer
63 views

Does Dapper use numbered parameters such as in Massive

Does Dapper use numbered parameters such as in Massive(@0, @1, ...) unlike named (@a, @b, ...)? It is necessary to create a query as //select @0 as val union select @1 union select @2 union select ...
0
votes
0answers
102 views

Using Dapper with Oracle User-Defined Types

Is there a way to use Dapper with Oracle User-Defined Types returned by stored procedures? Dapper seems to work with stored procedures (see Using Dapper with Oracle stored procedures which return ...
3
votes
1answer
79 views

Why is Dapper emitting IL code in CreateTableConstructor?

I'm looking at the excellent Dapper micro-orm, and in the Dapper.Rainbow project, there is some code that creates a table ctor, using IL. I was hoping someone could explain to me what this code is ...
1
vote
1answer
58 views

Dapper, list of parameters, possible memory issues

I'm using dapper and solr. After I get ids from solr I'm quering db like that: var dbResults = await dbConnection.QueryAsync<Product>(@"SELECT p.[ProductId] as Id] ...
0
votes
1answer
91 views

Dapper: create table from object type

Good morning. I'm trying to figure out how I can create an empty table from an object type. The type is quite simple (only primitive type properties); there's something ready to use? Do I need to ...
2
votes
1answer
72 views

How Do I Change the Dialect in Dapper Extensions?

By default, the RDBMS dialect for dapper extensions is SqlServer. How do I change this to another dialect? I've figured I can do: (I'm just quickly throwing together a pgsql dialect) var conf = new ...
1
vote
1answer
212 views

Is there a way to remove the default dependency on Entity Framework within MVC 4? [closed]

Is there a way to remove the default dependency on Entity Framework within an ASP.NET MVC 4 project and replace it with another similar technology such as Dapper
2
votes
1answer
102 views

How to do an insert and update for an object with a navigation property using Dapper.Rainbow (or optionally using Dapper.Contrib)

I started looking into Dapper just recently. I'm testing it out and was able to do basic CRUD and what I meant by basic is that working on a class with this structure: public class Product { ...
1
vote
2answers
67 views

Weird timeout issues with Dapper.net

I started to use dapper.net a while ago for performance reasons and that i really like the named parameters feature compared to just run "ExecuteQuery" in LINQ To SQL. It works great for most queries ...
0
votes
1answer
64 views

Unable to use dapper, “Several methods are applicable”

I'm trying to use Dapper to do simple CRUD operations to a SQLite database, but I'm having trouble because the compiler is accusing a error that I simply dont know how to fix. The error in questions ...
1
vote
0answers
126 views

Dapper and OrmLite IDBConnectionFactory in ServiceStack

I am impressed with the speed that I can create services using ServiceStack, but for a while now I have not been able to grasp the concept of using OrmLite and Dapper simultaneously in my project. I ...
0
votes
0answers
28 views

InvalidOperationException: Invalid attempt to call MetaData when reader is closed

So I'm getting this error intermittently on an ajax call for a typeahead textbox (bootstrap). It's difficult to reproduce so I haven't made much progress. I suspect it's caused by the user typing ...
1
vote
2answers
49 views

Retrieve parent and child objects with minimum DB hits using Dapper

Object hierarchy may be like Customers and Orders, and I want all customers with orders as List property. Typically, in ado.net, we loop through each customer and load their orders which might result ...
0
votes
2answers
52 views

Join navigation property with line

I try to join a navigation property by using LINQ. This is my code var activities = Using<GetActivitiesForUser>() .Execute(User.DisplayAs, User.MarketId); var contacts = ...
1
vote
0answers
71 views

using Dapper with '?'

I'm attempting to use Dapper to communicate with a DB2 server. The DB2 server doesn't support named parameters out of the box. It expects a question mark in the query for each parameter. Is there a ...
0
votes
1answer
112 views

Dapper Extensions - change primary key field

We are thinking of switching over to Dapper from EF. I'd like to use the Dapper Extensions to populate my entities like: UserInstance = conn.Get(UserProfile)(RecordID) All of our primary key ...
5
votes
1answer
216 views

How to use Dapper in ServiceStack

Currently, I am using OrmLite for DB operations. I am also planning to use Dapper ORM, but can anyone point me how to integrate DapperORM in ServiceStack. Do I need to implement both IDbConnection and ...
1
vote
1answer
95 views

Procedurally create a dynamic object for Dapper

I've seen many posts about creating ExpandoObject objects and such, but it does not work in my case. I need to create an object like var someObj = new { term1 = "someValue", term2 = "other", ...
3
votes
1answer
105 views

Specified Cast is not Invalid (Enum with int value, Dapper)

I have a class with a (simple, first cut) implementation of user roles: class User { public Role Role { get; set; } // ... public User() { this.Role = Role.Normal; } public void Save() { ...
1
vote
1answer
75 views

Trim String with Dapper.NET

I have been using Dapper.NET for a while now. I was just wondering if it's possible to get Dapper to trim strings as it assigns them to the properties of the object. I currently use ...
3
votes
1answer
240 views

What causes “extension methods cannot be dynamically dispatched” here?

Compile Error 'System.Data.SqlClient.SqlConnection' has no applicable method named 'Query' but appears to have an extension method by that name. Extension methods cannot be dynamically dispatched. ...
1
vote
0answers
90 views

How to implement SQL Azure Transient Fault Handling Framework for Dapper?

I'm a vb.net guy and have difficulty reading C#. I compiled the C# Dapper to a DLL and use it my app. My main concern is I think I need to modify the source to integrate by default the Transient Fault ...
1
vote
1answer
172 views

Dapper.Rainbow with existing database schema

I am trying out Dapper. I like what I have seen so far. In order to do simple CRUD, I use Dapper.rainbow. It works very well. However, it works only if the table has identity column with name Id. It ...
1
vote
1answer
108 views

Mapping private attributes of domain entities with Dapper dot net

In most of my projects I use nHibernate + Fluent mapping and recently I've started to play around with Dapper to see if I can move read operations to it. I follow DDD approach so my domain entities ...
1
vote
1answer
90 views

Dapper .net looses connectionn string with Sybase 12 or 16

I work with Sybase 12 and dapper.net. Everything was ok, until I made Sybase update 3817. After this update, I began to get such exception: " System.NullReferenceException:" trace: ...
1
vote
1answer
43 views

mvc3 dapper parameter issue

I have dapper working correctly, but it is unsecure as in I haven't been using parameters, how can I best turn my dapper variables into parameters for instance this is the unparameterized code that I ...
2
votes
2answers
37 views

Extending MultiMap supported number of types

I'm considering extending the MultiMap methods in Dapper to support more than 5 types. Was just curious as to whether there was a technical/performance reason for 5 or was it just an arbitrary number? ...
-1
votes
2answers
66 views

Work around for Generics and Dynamic arguments

I'm trying to write a wrapper to hide much of the code I find myself repeating for each db call in Dapper. (namely the Sql Connection, try, default catch and finally) Essentially I would like to do ...

1 2 3 4 5 9