Jonathan Magnan
Jonathan Magnan
Hello @NielsUll , I'm not sure to understand fully the problem. Why not simply add a global event such this: ```csharp public static Action DbModelBuilderBuilder; protected override void OnModelCreating(DbModelBuilder modelBuilder)...
Hello @magnusbakken , `CreateTransient` was originally returning a `DbConnection` but we modified it to `EffortConnection` since we added a few options on it. I don't think there is any reason...
Hello @magnusbakken , The v2.2.5 has been released The `CreatePersistent` method now also return an `EffortConnection`. Let me know if everything now works as expected. Best Regards, Jon
Hello @Sirozha1337 , I will assign one of my developers to look at your question. Best Regards, Jonathan
Hello @Sirozha1337 , Sorry for the delay, Here is a working example: ```csharp using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Common; using System.Data.Entity; using System.Linq; using System.Windows.Forms; using Effort.Provider; namespace Effort.Lab.EF6 {...
Hello @AMGitsKriss , Do you think you could provide a project sample with this issue? It will help my developer investigate the issue more efficiently. We have seen several people...
Great thank for letting us know ;)
Hello @julealgon , Unfortunately, I don't have this answer. We are not the original author of this library, so some concepts are still missing from us. I could throw you...
Here is an example of what I call a "fake" stack overflow: ```csharp public static int FakeStackOverflow(int i) { if (i == 100000) { return i; } return FakeStackOverflow(i +...
Thank for the additional information, I will assign this request to my developer to let him check if he could find something using your example