Customisable reference conventions

By default references are matched with the {PropertyReference}Id naming convention.

In my model the convention is rather ‘Cle{PropertyReference}’, so I can’t use the Load* APIs to load child references.
Would it be possible to configure this behavior, via OrmLiteConfig for example ?

Thank you !

This goes all the way through to OrmLite’s POCO references where the field naming convention isn’t configurable.

But you can use an alias to change the column mapping, e.g:

[Alias("CleTable")]
public string TableId { get; set; }