Loading backreference not working
See original GitHub issueNot working when trying to load a backreference (IEnumerable<object>). Normal references work with this version of linq2db but when trying to load a backreference it simply doesn’t load anything. On VS output window the query doesn’t have the joins on that backreference.
var q = _myDB.MYTABLE .LoadWith(x => x.MYBACKREFERENCECOLLECTION) .Where(x => x.Active) .OrderBy(x => x.Date);
Environment details
Linq To DB
version: 3.6.0
Database (with version): SQLServer 2019
ADO.NET Provider (with version): System.Data.SqlClient 4.8.3
Operating system: Windows
.NET Version: .Net6
Issue Analytics
- State:
- Created 5 months ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Regex backreference not working [closed]
I tried with this editor but the backreference does not work as I expect. Why does the backreference to the first capture group...
Read more >loading back-reference groups "shortcut"
I'm looking for a shortcut for loading back-reference groups using the same separator. Such a beast may not exist but it would be...
Read more >Controlling deferred loading of back reference list fields for ...
Deferred loading of a back reference list field may cause problems for a hook or script. This may happen if the hook or...
Read more >Illegal back reference when trying to delete \1
You can't use \1 as a back reference to what matched in a separate pattern match. I see you're using the pattern in...
Read more >back reference details to drawing not working
I have drawn a detail marker (a sourced marker) and when i have placed that on the drawing - i am not able...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Just made a simple test similar to yours and works with same version… I’m gone try and find the issue into my code then. Thanks for helping.
Just tested it with 3.6.0 and everything works for me. Could you provide similar example where it doesn’t work for you?