Ben Edwards

Results 11 issues of Ben Edwards

So this quirk of IE that managed to prevent all file uploads from working in our system. The file upload widget uses a hidden field in the background. After selecting...

has solution

Other less compilers i checked dont have this issue, it seems specific to the one fiddlesalad uses. When i type: ``` less .foo { > .bar { baz& { width:...

Still a work in progress. Using string-backed struct as a custom object. Currently works with `CustomId` and `CustomId?`. Does not yet work with `CustomId[]`. Once working, can be added to...

linq

Currently when multi tenancy is enabled for a database, indexes are created with the columns arranged with id first, tenant_id next, anything else after. As an example see the sql...

breaking change

Adds 2 new methods to `IEventStoreOptions`: * `AddIndexToStreamsTable(IndexDefinition index)` * `AddIndexToEventsTable(IndexDefinition index)` These do exactly what they say on the tin - the passed in index definition is added to...

From the reset prototype function, off by one error on array index lookup. ``` language-javascript while (this.tags.length ) { this.remove( this.tags[ this.tags.length ] ); } ```

More of a discussion than an issue. I've been putting together ideas for how to remodel one of our apps that uses marten events. Currently the main business entity -...

Some edge cases where parsing did not match the generated DDL, Specifically, the `::regconfig` and spaces between index columns was causing trouble. Side note, there is no good way to...

Updates the behaviour of `BulkInsertMode.OverwriteExisting` to use `insert ... on conflict do update`. This is one less db statement than before and a less prone to constraint issues. Also updates...

This is the result of a series of tests I have been doing on the performance of bulk operations with events. ## The tests: THe branch I am running these...