Skip to content

Commit 9fd1d5c

Browse files
committed
wip
1 parent 95ce1eb commit 9fd1d5c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/GoatQuery/src/Extensions/QueryableExtension.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ private static Dictionary<string, string> CreatePropertyMapping<T>()
1515

1616
BuildPropertyMapping(typeof(T), "", result, typeMappings);
1717

18+
// Debug: Print all mappings to see what we have
19+
Console.WriteLine($"Property mappings for {typeof(T).Name}:");
20+
foreach (var kvp in result.OrderBy(x => x.Key))
21+
{
22+
Console.WriteLine($" '{kvp.Key}' => '{kvp.Value}'");
23+
}
24+
1825
return result;
1926
}
2027

0 commit comments

Comments
 (0)