Matt Thornton

Results 16 issues of Matt Thornton

Currently the script that is generated looks something like this: ``` IF OBJECT_ID('Enum_MyEnum', 'U') IS NULL begin CREATE TABLE [Enum_MyEnum] (Id int CONSTRAINT PK_Enum_MyEnum PRIMARY KEY, Name nvarchar(255)); exec sys.sp_addextendedproperty...

So I find myself writing the following quite a bit: ```fsharp type VariableName = VariableName of string module VariableName = let value (VariableName x) = x module VariableNameCodec = let...

It seems there are (at least) a couple of ways that people encode DUs in JSON. The first way, which is currently documented, uses the case name as the property...

Currently `jreqWith` etc require that the codec passed to them is a "pair of functions" type codec. Such as `(JsonValue -> a' ParseResult) * (a' -> JsonValue)`. However, when defining...

I've found myself searching for a `setContentType` function, like `setStatusCode` that is just a functional version of the `SetStatusCode` extension method on `HttpContext`. I couldn't find this one, am I...

[consuldotnet](https://github.com/PlayFab/consuldotnet) is now archived and doesn't seem to have been updated recently. Given it is a wrapper around Consul's REST API it should be possible to remove our dependency on...

enhancement

**Describe the bug** We have a schema name like `my-schema` in MySQL. When querying this schema we are required to enclose it in backticks to escape the hyphen. It seems...