Devin Lyons
Devin Lyons
Exactly. My hope was that I could queue up the operations and commit them all in a single transaction. Otherwise, I have to manually create the transaction. That's easy enough...
That's what I ended up doing. My code is working but I still think having the `SubmitUpdates` method perform updates in a predictable manner is a worthwhile feature. Anyway, thanks...
Yes, I have.
That did the trick. Thanks!
Is this what you need: [QuotationToExpression](https://fsharp.github.io/fsharp-core-docs/reference/fsharp-linq-runtimehelpers-leafexpressionconverter.html#QuotationToExpression)? There's a typed version of this function too: [QuotationToLambdaExpression](https://fsharp.github.io/fsharp-core-docs/reference/fsharp-linq-runtimehelpers-leafexpressionconverter.html#QuotationToLambdaExpression).
I've been debugging this in LinqToDB and I don't see a reference to a FSharpExpr. The builder seems to interpret this as a method call, not some unknown expression. Is...
I think I got it working. For anyone who wants to do the same thing, here is the solutions I came up with: ```csharp public class FSharpSomeInfoProvider : IGenericInfoProvider {...
I don't know if it will help, but here is my implementation of an F# provider that wraps the DB2iSeriesProvider. it could be abstracted to wrap any provider though. I'm...
Of course, this isn't quite working. I have an enum and entity like this: ```csharp public enum MyEnum { [MapValue("Foo")] Foo, [MapValue("Bar")] Bar } public class MyEntity { public int...
I tried working with value converters but they don't seem to work with wrapper types like `FSharpOption`. Do you have any suggestions on how to solve this?