David Teasdale

Results 12 comments of David Teasdale

I currently use the Fable.JSON for non-fable apps because I like the way it does unions and option types. So far I haven't needed to use any Json attributes on...

About 2-3 weeks I create a new test project that uses `FSharp.Data.SqlClient` in dotnet core 3 and everything work fine building using dotnet publish via fake. However, I came to...

I would love to see this go in just because we use a build server that can't access a database so it's a bit of a show stopper.

@rkosafo at the moment it needs to be an open connection so @smoothdeveloper is correct and you should use one of the other constructors: ``` use conn = new SqlConnection(ConnStr)...

Voted. Shame about the TP and records. I may look at https://github.com/fsprojects/SQLProvider/blob/62d7f0dc700fdbfa1bd4d788c0e6c4801f8e27a5/src/SQLProvider/SqlRuntime.Common.fs#L218 for some ideas.

Thanks @Gadgetoid for spending some time on this, any help is much appreciated :) Looking at [set_multiplexer](https://github.com/pimoroni/ads1015-python/blob/master/library/ads1015/__init__.py#L129) function, would I be able to use the following rather than `/ 3.3`...

@Andermutu I've tried the [adc.get_voltage('in0/gnd') / 3.3](https://github.com/davidtme/enviroplus-python/blob/master/examples/gas.py#L54) and I get some numbers :)

@MangelMaxime the inline's and 30 field record is just to show how the problem can grow. I didn't want to post up a 200 line record with 200 updates when...

I wonder if fable could create a new method? ``` JavaScript export class Record { constructor(Field1, Field2) { this.Field1 = (Field1 | 0); this.Field2 = (Field2 | 0); } with(fields)...

@Thorium Thank you so much for the fast response. I wish I could change the database as it’s such a mess but sadly it’s beyond the scope of the project...