Dapper: is it possible to customize the type mapping of a specific field of a specific type?
- 阅读更多 关于 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; } public string LastName { get; set; } public string Email { get; set; } public DateTime DateCreated { get; set; } public DateTime LastLogin { get; set; } } Which I want to map to the following table: CREATE TABLE "user" ( "ID" int(11) NOT NULL AUTO_INCREMENT, "FirstName" varchar(45) DEFAULT NULL, "LastName" varchar(45) DEFAULT NULL, "Email" varchar(255) NOT NULL, "DateCreated" int(11) NOT NULL, "LastLogin" int(11) NOT NULL, PRIMARY KEY ("ID") ) Or put in simpler words: I want