Stéphane Mitermite
Stéphane Mitermite
Hello, Thanks for this great library, it's very useful. I wanted to add my own custom matcher to the matchers list. I tried this code and it works great :...
The bug #84 is back with Oracle EF Core 6. :angry: When I do ```csharp var days = (from r in dbContext.Blogs select (DateTime.Now - r.CreationDate).Days).FirstOrDefault(); ``` I get a...
Adds a `EnableDependencyInjection(Action configureServices)` method in `ODataOptions` to be able to add services (`StringAsEnumResolver` for example) in non-model scenario. Fixes #422 #### Usage : ```csharp builder.Services .AddControllers() .AddOData(opt => {...
An HTML form can have multiple submit buttons with differents actions. In this case, the [HTML5 formaction attribute](https://www.w3schools.com/tags/att_input_formaction.asp) overrides the action attribute of the form element.
**Describe the bug** With the boostrap theme, the grid column menu looks like disabled. **To reproduce** Go to the [demo page with Bootstrap theme](https://demos.telerik.com/kendo-ui/grid/index?autoRun=true&theme=bootstrap-main) and click on a column menu....
With EF Core 8.0.2 and Oracle.EntityFrameworkCore 8.21.121, when I concatenate non unicode strings, I got an ORA-00932 exception. ```csharp var author = (from b in dbContext.Books select b.AuthorFirstName + "...
Hello, With Oracle EF Core 7 or 8, I often receive the ORA-01000 error (maximum open cursors exceeded). When we do some updates, a lot of cursors are opened but...