You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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:
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: