Charles Roddie

Results 63 issues of Charles Roddie

Currently to convert a primitive to CBOR, `CBORObject.FromObject` is used which has a lot of overloads. This gives a lack of safety, as overload resolution is affected by `op_Implicit`, and...

`CBORObject.FromObject` has an overload taking arrays: ```csharp public static CBORObject FromObject(CBORObject[] array) { if (array == null) { return CBORObject.Null; } IList list = new List(); foreach (CBORObject cbor in...

I consider Quick Bible the best such app on any platform. It would be great if this were available cross-platform. I would be willing to support this effort financially and/or...

Given tests in a folder structure: ```fsharp [] let tests = testList "ListA" [ testList "ListAA" [ testCase "CaseAA1" id testCase "CaseAA2" id ] testCase "CaseAB1" id ] ``` Is...

A GetGlyphIndex method is internally trying to set something. This can result in errors like: ``` Dictionary`2[TKey,TValue].TryInsert (TKey key, TValue value, System.Collections.Generic.InsertionBehavior behavior) SIGABRT: Operations that change non-concurrent collections must...

About the feasibility of supporting editing LaTeX, as you can do in MathQuill using javascript. Is this infeasibly large or potentially doable in future? My initial thinking is that the...

kind:feature
help-wanted

We should consider making a generated type provider. There are previous closed threads (https://github.com/fsprojects/FSharp.Data.SqlClient/issues/61, ) that have focused on C# friendliness, which is a very good goal, but this is...

```fsharp let x = use cmd = new SqlCommandProvider(conn) cmd.Execute() ``` `x` is an int. What does it represent? Number of rows affected? A status code?

question

When we have an error indicated like this in Visual Studio: ![image](https://user-images.githubusercontent.com/19760720/53631006-5e8a3980-3c09-11e9-98a0-00f006a42cf8.png) Hovering gives: ![image](https://user-images.githubusercontent.com/19760720/53630958-40bcd480-3c09-11e9-8386-17e90ee67663.png) Is it something we are doing wrong or a bug in FSharp.Data.SqlClient? Thanks!

needs-repro

Is there a way to get types to update after changing an sql file in `SqlFile` or `SqlCommandProvider`, without restarting Visual Studio?

question