Jonathan Magnan

Results 1222 comments of Jonathan Magnan

Hello @itan-mcp , Thank you for reporting, we will look at this. Best Regards, Jon --- **Sponsorship** [Help us improve this library](https://github.com/sponsors/zzzprojects) **Performance Libraries** `context.BulkInsert(list, options => options.BatchSize = 1000);...

Hello @itan-mcp , At this moment, I believe you will need to keep using this workaround. We could certainly support the `FromSqlRaw` with no parameter the way you proposed but...

Hello @schuettecarsten , > This did not happened with earlier versions of EntityFramework.Plus libraries Can you let us know which version of the library didn't throw the error so we...

沒有, 目前沒有分頁功能。 你在尋找這樣的東西: ```csharp ctx.Customer.Paging(page, pageSize).ToList(); ```

Hello @granthoff1107 , Sorry for the delay, it seems we forget to log this request. We will try to look at it this week. Best Regards, Jonathan

Hello @granthoff1107 , My developed look at it today and he is not sure to understand as it should already work with this code: ```csharp Func conversationFilter = c =>...

Hello @granthoff1107 , Yes, that's more clear. You want to add a filter using an `Expression` or `LambdaExpression`. On our side, we will do the reflection and add the generic...

Hello @PatryxCShark , Improving this is something in our backlog. Unfortunately, time is missing so we never succeed yet to find time to do such a request. We will eventually...

Hello @PatryxCShark , The `UseTableLock` will add a `TABLOCK` hint. You can also use the `UseRowLock` option that will add the `ROWLOCK` hint.

We cannot guarantee if it will still require it or not. However, there will for sure have less chance of lock/block. Unfortunately, simplifying the query generation to make an update...