It is possible to create ComponentConvention, but this code does not work because References collection is collection of IManyToOneInspector and not IManyToOneInstace. Is there any other way to specify column?
public class ComponentConvention : IComponentConvention
{
public void Apply(IComponentInstance instance)
{
foreach (var inspector in instance.References)
{
inspector.Column("some_name");
}
}
}