Top "Micro-orm" questions

Micro-ORM are lean and mean object relational mappers.

How to generate model from database using Dapper?

I am coming from PetaPoco camp. PetaPoco has a T4 template which generates model from the database. Is anything similar …

visual-studio-2010 dapper micro-orm
Mapping char(8) to string property with Dapper

I have the following table, abridged: CREATE TABLE [dbo].[TERMINAL] ( [TERM_CODEID] SMALLINT NOT NULL, [TERM_ACTIVE] SMALLINT NOT NULL, […

c# database orm dapper micro-orm
Dapper: is it possible to customize the type mapping of a specific field of a specific type?

Let's say I have this User class: public class User { public int ID { get; set; } public string FirstName { get; set; } …

c# sql dapper micro-orm
Querying into a complex object with Dapper

I have a Customer class with the following properties: public int Id { get; set; } public string Name { get; set; } public …

c# orm dapper micro-orm