Daniel Chambers
Daniel Chambers
I also ran into this error, however, it is not a bug. You simply need to handle errors that can occur during database opening by adding a callback to your...
Oh okay, fair enough, I stand corrected 🙂
Just tested this against v1.34.2, still works. 👍 (Compiled against the released SiraUtil and BSML) @ErisApps Would love to see this merged and put on BeatMods for others to easily...
I took a brief look at the new library a few months ago. Microsoft has totally changed the API surface and removed things that this library uses to function. It...
That sounds great, I'd love to see any PRs you have time for for those features. The update expressions idea is particularly cool!
This is a cool idea! Under the covers, the simplest way to implement this is probably to read that quotation's structure and populate a DynamicTableEntity and push that through a...
You currently can't do it short of using ITableEntity-derived classes instead of F# record types. I'm planning a feature that would allow you to define a discriminated union: ``` type...
I don't see the extra column as an issue at all. Table Storage is insanely cheap, so one extra column that you don't even see or need to maintain from...
I'm agreeable to the idea of supporting some way of serializing non-standard types. As for worrying about the size of the serialized data, I tend to concur with @eiriktsarpalis: the...
The attribute idea is good, however I don't see the need for binary/text interfaces. I think we only need a single interface like this: ``` fsharp type ICustomSerializer = abstract...