Add support ColumnAttribute for different column name#130
Open
denisenko93 wants to merge 1 commit intoDapperLib:mainfrom
Open
Add support ColumnAttribute for different column name#130denisenko93 wants to merge 1 commit intoDapperLib:mainfrom
denisenko93 wants to merge 1 commit intoDapperLib:mainfrom
Conversation
|
Is it possible to get some movement on this PR? Would be an immensely helpful feature for my use case |
|
@denisenko93 I used your branch of the code. Thank you. |
|
@denisenko93 |
|
Provide a feature suggestion to add not only the Attribute [Column(string)] but also a DbMetaDataNameCaseAttribute(enum DbMetaDataNameCase) class. When a class or class property has this attribute, it should convert the field to SnakeCase. /// <summary>
/// Database metadata naming rules
/// </summary>
public enum DbMetaDataNameCase
{
/// <summary>
/// Snake case naming (snake_case)
/// For example: example_name
/// </summary>
SnakeCase,
}
[AttributeUsage(AttributeTargets.Class| AttributeTargets.Property)]
public class DbMetaDataNameCaseAttribute : Attribute
{
public DbMetaDataNameCaseAttribute(DbMetaDataNameCase dbMetaDataNameCase)
{
DbMetaDataNameCase = dbMetaDataNameCase;
}
public DbMetaDataNameCase DbMetaDataNameCase { get; set; }
}
private static string ConvertCamelCaseToSnakeCase(PropertyInfo property)
{
string name = property.Name;
string resultName = Regex.Replace(name, "([a-z])([A-Z])", "$1_$2").ToLower();
return resultName;
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added Attribute [Column(string)] for when the column in the DB is named differently from the Property in the model. Fixed #129
Breaking changes: