We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b19e8b commit c903a3dCopy full SHA for c903a3d
1 file changed
src/Sql/Reflection/TableInfo.cs
@@ -17,7 +17,7 @@ public sealed class TableInfo(Type type) {
17
.GetProperties(BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public)
18
.Where(property => !property.IsDefined(typeof(NotMappedAttribute)) && ((property.CanRead && property.CanWrite) || property.IsDefined(typeof(ColumnAttribute))))
19
.Select(property => new ColumnInfo(property))
20
- .ToFrozenDictionary(column => column.Name);
+ .ToFrozenDictionary(column => column.Name, StringComparer.OrdinalIgnoreCase);
21
22
/// <summary>
23
/// The single identity column, if applicable.
0 commit comments