Jason Dentler
Jason Dentler
Using an `IHasManyConvention` convention as follows, I can almost generate the correct mapping. However, I can't remove the `one-to-many` element. ``` instance.AsSet(); var tableName = Inflector.Inflector.Pluralize(instance.EntityType.Name + instance.Member.Name); instance.Table(tableName); instance.Key.Column(instance.EntityType.Name...
This simple script fails in IE8. `localData` is undefined. ``` var topic = "topic"; var data = {key: 'value'}; PubSub.subscribe(topic, function (localData) { alert(typeof localData); alert(typeof localData.key); }); PubSub.publish(topic, data);...
### CLI Version 2.36.2 ### Operating System and Architecture - [x] macOS (arm64) - [ ] macOS (x86_64) - [ ] Linux (i686) - [ ] Linux (x86_64) - [...
In our CI server, we pin the version of sentry-cli for repeatability. Currently, our build script has to do the following: 1. Check if sentry-cli is installed at all. 2....