Let\'s say I have a class called Test with one property called Title with a custom attribute:
public class Test
{
[DatabaseField(\"title\")]
public s
No, it's not possible. The reason for this is that it's the value, and not the property itself that would be sent into any custom extension method that would fetch this information. Once you get into that extension method, there's no reliable way to trace back to the property itself.
It might be possible for enum values, but as far as properties on POCO's, it's not going to work.