We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See Database_concurrency_token_value_is_updated_for_all_sharing_entities
The model here has:
public class Sponsor { public int Id { get; set; } public string Name { get; set; } } public class TitleSponsor : Sponsor { public SponsorDetails Details { get; set; } } public class SponsorDetails { public int Days { get; set; } public decimal Space { get; set; } }
Both these queries leave Details null:
Details
var sponsor = context.Set<TitleSponsor>().Single();
var sponsor = context.Set<TitleSponsor>().Include(e => e.Details).Single();
Tested with SQL Server
The text was updated successfully, but these errors were encountered:
Duplicate of #15285?
Sorry, something went wrong.
@smitpatel Probably--just wasn't sure if this was a special case.
Re-enable more non-query tests
ba1bd57
Part of #15318 (Still open for in-memory tests) See also #16359 and #16360
c520ecf
No branches or pull requests
See Database_concurrency_token_value_is_updated_for_all_sharing_entities
The model here has:
Both these queries leave
Details
null:Tested with SQL Server
The text was updated successfully, but these errors were encountered: