Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8453997
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T11:54:42+00:00 2026-06-10T11:54:42+00:00

Is there a way with dapper-dot-net to use an attribute to specify column names

  • 0

Is there a way with dapper-dot-net to use an attribute to specify column names that should be used and not the property name?

public class Code
{
    public int Id { get; set; }
    public string Type { get; set; }
    // This is called code in the table.
    public string Value { get; set; }
    public string Description { get; set; }
}

I’d like to be able to name my properties whatever I choose. Our database has no consistent naming convention.

If not with dapper, are there any additional similar options?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T11:54:43+00:00Added an answer on June 10, 2026 at 11:54 am

    You can also check out Dapper-Extensions.

    Dapper Extensions is a small library that complements Dapper by adding
    basic CRUD operations (Get, Insert, Update, Delete) for your POCOs.

    It has an auto class mapper, where you can specify your custom field mappings. For example:

    public class CodeCustomMapper : ClassMapper<Code>
    {
        public CodeCustomMapper()
        {
            base.Table("Codes");
            Map(f => f.Id).Key(KeyType.Identity);
            Map(f => f.Type).Column("Type");
            Map(f => f.Value).Column("Code");
            Map(f => f.Description).Column("Foo");
        }
    }
    

    Then you just do:

    using (SqlConnection cn = new SqlConnection(_connectionString))
    {
        cn.Open();
        var code= new Code{ Type = "Foo", Value = "Bar" };
        int id = cn.Insert(code);
        cn.Close();
    }
    

    Keep in mind that you must keep your custom maps in the same assembly as your POCO classes. The library uses reflection to find custom maps and it only scans one assembly.

    Update:

    You can now use SetMappingAssemblies to register a list of assemblies to scan:

    DapperExtensions.SetMappingAssemblies(new[] { typeof(MyCustomClassMapper).Assembly });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way to use Dapper.NET with stored procs that return multiple result
Is there way that I can read the file from remote server using fopen
Is there any way I can set a formatter on models that will convert
Is there way for a class to 'remove' methods that it has inherited? E.g.
Is there way to set the dynamic-insert attribute globally with Hibernate (so it would
Is there way to show users that the website page started loading. My homepage
Is there way in MySQL to create DATETIME from a given attribute of type
Is there way to use the Find in Files command for searching all of
Is there way to write some ConfigurationValidatorAttribute or in some other way that will
Is there way to tell IntelliJ IDEA which output folder to use for GWT

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.