Smit Patel
Smit Patel
Note: This gave incorrect result in 3.1.x by initialize post with default values rather than returning null (the result of DefaultIfEmpty). With #20633 fixed, it now throws error. Right fix...
Issues faced: When generating left join we need to add additional null check in selector so that we can generate correct default type if sequence is empty and not try...
Work-around to original issue ``` var query = from blog in db.Blogs join post in dbPosts on blog.BlogId equals post.BlogId into posts from xpost in posts.DefaultIfEmpty() select new Blog {...
@skclusive - Your query was giving incorrect results in 3.1, The bug fix for #20633 stopped generating incorrect results. In your case it throws exception because the query translation couldn't...
@hhhuut - There is no one answer to the question. Essentially, when you do a left join, right side can have null values so accessing any property over that will...
@StrangeWill - This is what will happen in EF Core 6.0 - If the selector does conditional expression before construction of anonymous type, then we will not create instance of...
Related #19095
I don't think trx will be generated if the test run is terminated.
Our current pipeline is configured to capture logs even when a step fails. It publishes all test results, artifacts. Issue here is that whole job is terminated on timeout so...
No. This requires something beyond `NotParameterizedAttribute`. If we don't create parameter then we cannot cache the query plan.