Micro-ORM are lean and mean object relational mappers.
I am coming from PetaPoco camp. PetaPoco has a T4 template which generates model from the database. Is anything similar …
I have the following table, abridged: CREATE TABLE [dbo].[TERMINAL] ( [TERM_CODEID] SMALLINT NOT NULL, [TERM_ACTIVE] SMALLINT NOT NULL, […
Let's say I have this User class: public class User { public int ID { get; set; } public string FirstName { get; set; } …
I have a Customer class with the following properties: public int Id { get; set; } public string Name { get; set; } public …