Note: Oracle 11, I can't change anything about it. and the Proc doesn't return a TypedList to LLBL because calling it with all null params by LLBL results in no result set.
When I call:
var a = adapter.FetchProjection<MyPoco>(reader);
I get back the MyPoco fine.
However, MyPoco has to have fields like "MY_UGLY_FIELDNAME_WITH_UNDERSCORES" for the FetchProjection to work.
Is there an [Attribute] I can use on MyPoco to tell FetchProjection that it should use a different name.
Like this
[LLBLPropertyName("MY_UGLY_FIELDNAME_WITH_UNDERSCORES")]
public string VeryPrettyName { get; set; }