Gauthier Segay
Gauthier Segay
> I believe to have identified the underlying cause of the exception. Please correct me if my reasoning is off. I'm unlikely to "correct", but share my understanding (which can...
@sachinshahredmane, could you confirm you can connect to the same database using a plain `SqlConnection` from `System.Data.SqlClient` namespace with the same connection string?
Possibly relevant: https://github.com/dotnet/fsharp/issues/15820
IMO, we shouldn't modify the compiler or language, if not through a suggestion for such important syntax adjustment. I feel the argument for making `member` optional with `static` has some...
Note that I also intended to work on exposing `Is*` members, but https://github.com/dotnet/fsharp/pull/11394 has not been merged. I'm wondering if I should still go forward, because there is still no...
Any opinion how those `Is*` members should look like in Python? There is a bit of a conflict with the DU cases having the PascalCase "type" casing and this being...
@dbrattli this looks interesting! Would it make more sense to put the cases as inner classes? I'm wondering because there is the concern of having DU cases that are named...
@MangelMaxime, the main issue with this, as I understand it, is that it precludes authoring python libraries in F#. all the modules will have _fs suffix for python consumers.
@dbrattli, I'm not yet sensibilized with all the ways python works with loading modules, I think people actually update `sys.path` or `%PYTHONPATH%` when needing to load modules from separate locations....
[Feature Request] review / remove [<AutoOpen>] on modules that overlay FSharp.Core collection types.
@bvenn, it occurs that those modules in `FSharp.Core` have the [] attribute. > open Seq;; > -----^^^ > > error FS0892: This declaration opens the module 'Microsoft.FSharp.Collections.Seq', which is marked...