Hi,
we've got a data project in our solution that is entirely created by LLBLGen.
But we need to use attributes for some of generated entity classes. Normal way is to use Metadata class but this should be specified as an attribute for entity class and the only way to add a custom attribute to auto generated class that I've found is using partial classes. And since custom partial classes are specified in .csproj file, they're gonna disappear after refreshing code from a DB.
What is the best way to accomplish this task?
What are ways to add and keep custom files in proj files generated by LLBLGen and to mark autogenerated classes and their fields with own attributes?