dapper is the micro-ORM for .NET developed and used by the stackoverflow team, focusing on raw performance as the primary aim.
1
vote
1answer
17 views
When using the multi-mapping APIs ensure you set the splitOn param if you have keys other than Id“, ”splitOn
I'm trying to use the Multi-mapping feature of dapper to return a list of Album and associated Artist and Genre.
public class Artist
{
public virtual int ArtistId { get; set; }
public virtual string ...
0
votes
0answers
16 views
POCO One-To-One, micro ORM. Should I store ref id or only ref object?
Should I store ref id to child Poco or only ref object in Model when using micro ORM like Dapper (in Repository)?
I think that if I store both there will be synchronization issue when updating root ...
1
vote
2answers
15 views
Dapper “Procedure or function sp_XXXX has too many arguments specified.”
I am using Dapper's DynamicParamters object with the template argument to generate arguments with my entities. After I make my call to my stored procedure I am getting the following error "Procedure ...
0
votes
0answers
15 views
Display database tables accessed in controller/model on view page
I have a large ASP.Net MVC 4 project that uses Entity Framework with Dapper, and I have a task to display a "debug" area at the bottom of every page (if the user meets some authentication criteria). ...
2
votes
1answer
53 views
How to insert a C# List to database using Dapper.NET
Using dapper, how can I insert a C# List to database. Previously without dapper I used the below code to insert the List values to database.
try
{
connection.Open();
...
2
votes
1answer
48 views
How to store a sql result to a variable in C# using Dapper.NET
I'm using dapper in my project, a beautiful tool for storing the SQL query results to a List and this working good.
I wrote a SQL query to fetch a record from database and store the result in a ...
2
votes
1answer
34 views
Dapper Multi-map next level
I'm using multiple mapping for a current query and now I need to map another object on the initial query.
For example:
public class Part {
public int Id { get; set; }
public string Name { get; ...
2
votes
1answer
21 views
String parsing error with Dapper
I have the following table, abridged:
CREATE TABLE [dbo].[TERMINAL] (
[TERM_CODEID] SMALLINT NOT NULL,
[TERM_ACTIVE] SMALLINT NOT NULL,
[TERM_NAME] VARCHAR (30) NOT ...
4
votes
1answer
91 views
Filling and binding two combobox WPF Caliburn.micro
I have this table:
I use in my project this view Called NewItem and in this view there is two combobox.
I would like to do this :
that in the combobox Group there are all DESCRIPTION of table ...
2
votes
1answer
34 views
Are Dapper QueryMultiple/Query/Execute methods thread safe?
I'm using Dapper QueryMultiple/Query/Execute methods in my .net 4.5 code (Parallel library), I would like to know if it is thread safe.
Thank you,
Monica
1
vote
1answer
33 views
can dapper replace the table name?
I had expected that dapper-dot-net could replace the table name in a query like this:
connection.Query("SELECT * FROM @Table WHERE [Id] = @Id", new {Table = tb, Id = id});
However, it seems to not ...
0
votes
2answers
35 views
.NET Dapper nullable cast error
Using .NET Dapper, I am having an issue getting a database field that contains an integer value (0/1) to map to a nullable boolean property in a class.
To keep things simple, I have stripped down and ...
1
vote
2answers
21 views
entity vs. dapper datetime check not worker
I have entity and also use dapper, I have 1 form with 2 date fields... named before and after so users can search in between those dates. The one from entity works perfectly but the one from dapper ...
1
vote
2answers
41 views
Issue about dapper
public class Profile
{
public int ID { get; set; }
public string Name { get; set; }
public string Phone { get; set; }
public string Address { get; set; }
public ExtraInfo Extra ...
2
votes
1answer
24 views
is multi mapping in dapper care about the sqlstr`s column order?
for example:
here is my pocos:
public class product
{
public int productid { set; get; }
public category category { set; get; }
public string productname { set; get; }
}
also the ...
1
vote
1answer
23 views
Using DataReader in Dapper with Oracle
How do I get values read values line a DataReader to read values of fields returned by multi in the following code to set the values in the Class
OracleRefCursor m_Cursor=null;
...
4
votes
1answer
95 views
Is there a Micro-ORM by Microsoft?
The micro-ORM Dapper can populate an object from a database very easily without the need for other entity or class definitions. Below is an example of Dapper code.
Is there an equivalent Microsoft ...
1
vote
1answer
112 views
Dapper with Oracle passing in DbParameter
I'm trying out Dapper with Oracle and I was trying to run a multi-resultset query but Oracle requires a dbtype of refcursor.
StringBuilder query = new StringBuilder("BEGIN ");
query.Append("OPEN :rs1 ...
2
votes
1answer
84 views
String.Format with SQL wildcard causing Dapper query to break
I'm having a bit of an odd problem with Dapper and string formatting. Here's the relevant code:
string end_wildcard = @"
SELECT * FROM users
WHERE (first_name LIKE CONCAT(@search_term, '%') OR ...
2
votes
1answer
68 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 ...
2
votes
0answers
30 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 ...
3
votes
1answer
66 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
1answer
109 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
61 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
47 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
47 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
40 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
58 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
60 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
63 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
90 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
82 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
109 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
29 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
73 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
36 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
72 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
179 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
309 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
141 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
166 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
73 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
168 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
83 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
63 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
103 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
83 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
299 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
136 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
93 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 ...


