The Name property of your Users class is renamed / obfuscated. Therefore, the Columns collection has no entry for it.
In Eazfuscator, you can do the following to disable the renaming of class properties:
[System.Reflection.ObfuscationAttribute(Feature = "properties renaming")] class MyOneThousandAndThirdClass {
Or for one property:
class MyOneThousandAndFourthClass { [System.Reflection.ObfuscationAttribute(Feature = "renaming")] public string DisplayName { get; set; } }
Codenaked
source share