linq2db.EntityFrameworkCore
linq2db.EntityFrameworkCore copied to clipboard
Bring power of Linq To DB to Entity Framework Core projects
hi please check this code : ``` await TranslatedSitesRepository.NoTrackingQuery().Where(x => x.IsActive == true && x.AttractionId == Id.ChangeType() && x.LangCode == langCode).Select(x => new { Id = GId, BannerImage = repository.NoTrackingQuery().Where(mr...
I use `linq2db.EntityFramewortkCore` (6.7.1) in my read layer in ASP MVC application. I limit amount of threads in `ThreadPool` with `ThreadPool.SetMaxThreads(12, 100)`. Recently I witnessed that my application stops responding...
This likely means, that exceptions are thrown later (i.e. when starting to actually enumerate)
This is a weird issue which I am unable to reproduce on a smaller example (surprisingly, it seems to work just fine when attempting to create a one-file repro -...
In low thread condition offloading to Task.Run() results in deadlock since we block on Result. On the other side if thread is available old code also blocks on Result until...
Is there a way to integrate `linq1db.EntityFrameworkCore` with [MiniProfiler](https://miniprofiler.com/)? Regular `linq2db` has `DataContext` wrapper example on [linq2db.github.io](https://linq2db.github.io/) but I am not sure how to apply this when using this bridge.
Hi. I have System.DayOfWeek[] property inside on of my EF DbSet tables, and when I try to load this item from database, I get LinqToDBConvertException - {"Cannot convert value 'System.Int32[]:...
Hello, this is the live page to check the result of union query : [click here](https://newspanda.in/Contact-Us) scroll down and you will see a slider with images. images etc are selected...
Hello i am using EF Core 5.0.13 & Linq2DB 3.5.2 Linq2Db.EfCore Lib 5.0.9 Here is the query that works ok with ef core itself: ``` var BlogDetailsPage = await _pageRepository.Query().Where(...
I might be doing something not as it is designed but I've spent more than 1 day to finally find out the reason. What I'm trying to do is to...