James Gregory
James Gregory
See: http://stackoverflow.com/questions/11051515/fluentnhibernate-doubles-columnname-when-using-icomponentconvention-maps-v1-3-0 This works in v.717 (IComponentConvention) : ``` csharp public void Apply(IComponentInstance instance) { if (instance.Type == typeof(EmailAddress)) { instance.Properties.First(property => property.Name == "FullAddress")).Column(instance.Name); } } ``` Using the...
The table name that's generated by the automapper for element collections is the property name of the collection. If different entities use the same collection name then there'll be conflicts....
See: https://groups.google.com/forum/#!topic/fluent-nhibernate/gs-wnmjiZ-M/discussion Couldn't reproduce, but could be something to do with `ExportTo` being called first.
Patch from Robert, not sure why this never got applied. Will review post-1.1. ``` public class Indexes : FluentIndexBase { public Indexes(Configuration configuration) : base(configuration) { AddDialectScope("NHibernate.Dialect.MsSql2005Dialect"); ClusteredIndex().OnPrimaryKey(); UniqueNonClusteredIndex().OnProperty(x =>...
If your AWS account has many secrets in SSM, the validate secrets procedure will fail with a Throttled Exception from AWS; this is because the AWS provider is calling `ssm.describeParameters`...
Merge the Fluent Interface and AutoMappings into one awesome mapping. > What I envision is inspired by StructureMap. Something like the PersistenceModel is equatable to the Repository in StructureMap, where...
The current dependency change checking code will only look for `.sass` files, not `.scss` even though the main processor works fine with `.scss`. With this change `DEV` mode will correctly...
Pretty minuscule change. Two of the examples have predictable output, so include an `// Output:` line which causes godoc to embed that output in the online examples. It'd be nice...
### Describe the Bug In the CSS for the pane the cursor is always set to `grab`, even if you've set `panOnDrag` to `false`. EDIT: The same issue also appears...