When I want a type-safe constant that represents the name of an entity field, I can use something like this:
InventoryBookFields.Title.Name
However, I cannot find the equivalent for fields in typed lists. Are there any constants that represent the name of a typed list field?
The reason is that I want to use these constants in the Eval() and Bind() expressions in my GridViews and FormViews. I am now simply using strings like "Title", which are of course not type-safe.