I have a mapping like this:
HasMany(x => x.Orders).KeyColumn(\"CustomerID\");
Which is causing a constraint like this to be generated by
Figured it out:
HasMany(x => x.Orders).KeyColumn("CustomerID").ForeignKeyConstraintName("none");
buried in the source is a check to ignore creation if the name is "none"