TheJayMann

Results 23 comments of TheJayMann

The main difference I see between the two is that, with a function, html code put inside is translated directly as a call to `WriteLiteral()`, thus the html is written...

The `TemplateResult` type is necessary because that is how the built in `TemplateTargetExtension` works (by default it wants a type named `Template`, but has a property to change the name...

Not sure if this would work for you, but, what I've started doing is hard coding a connection string for a development SQL server (one which would always be valid...

I am having this issue too, and, just to clarify, It's not about supporting table valued parameters (which would also be nice), rather, it's about being able to access functions...

I figured something like that might have been the reason that stored procedures are untyped, and why I was happy to use stored procedures with the MapTo method to convert...

I believe you misunderstood the request. In both `seq { 1..6 }` and `set(seq { 1..6 })`, the `seq` is already optional today. The request is that `seq` also be...

I personally like the unofficial experimental DSL for Avalonia FuncUI https://github.com/uxsoft/FuncUI.Experiments. In a recent project, I had to import and edit the code as there were incompatible changes introduced between...

While working on my current project using Ionide, I believe I have always seen the custom operators, as well as nested CE builders, appear in the list. However, they appear...

Rather than use a struct single case discriminated union, you could instead use a struct single field record. ```fsharp [] type UserName = { Value: string } let bob =...

> I didn't use old versions of F#, so I've in fact always used string interpolation instead of formatted strings 😄 , even when need to print a single object....