Skip to content

Commit

Permalink
NRT tweak on GetConstructorParameter
Browse files Browse the repository at this point in the history
  • Loading branch information
mgravell committed Oct 13, 2023
1 parent 8d53acb commit b8d119f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dapper/PublicAPI.Shipped.txt
Expand Up @@ -135,7 +135,7 @@ Dapper.SqlMapper.ITypeHandler.SetValue(System.Data.IDbDataParameter! parameter,
Dapper.SqlMapper.ITypeMap
Dapper.SqlMapper.ITypeMap.FindConstructor(string![]! names, System.Type![]! types) -> System.Reflection.ConstructorInfo?
Dapper.SqlMapper.ITypeMap.FindExplicitConstructor() -> System.Reflection.ConstructorInfo?
Dapper.SqlMapper.ITypeMap.GetConstructorParameter(System.Reflection.ConstructorInfo! constructor, string! columnName) -> Dapper.SqlMapper.IMemberMap!
Dapper.SqlMapper.ITypeMap.GetConstructorParameter(System.Reflection.ConstructorInfo! constructor, string! columnName) -> Dapper.SqlMapper.IMemberMap?
Dapper.SqlMapper.ITypeMap.GetMember(string! columnName) -> Dapper.SqlMapper.IMemberMap?
Dapper.SqlMapper.Settings
Dapper.SqlMapper.StringTypeHandler<T>
Expand Down
2 changes: 1 addition & 1 deletion Dapper/SqlMapper.ITypeMap.cs
Expand Up @@ -33,7 +33,7 @@ public interface ITypeMap
/// <param name="constructor">Constructor to resolve</param>
/// <param name="columnName">DataReader column name</param>
/// <returns>Mapping implementation</returns>
IMemberMap GetConstructorParameter(ConstructorInfo constructor, string columnName);
IMemberMap? GetConstructorParameter(ConstructorInfo constructor, string columnName);

/// <summary>
/// Gets member mapping for column
Expand Down

0 comments on commit b8d119f

Please sign in to comment.