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
I have 2 table bellow, when I insert Product I want to get all data of Category with dynamic but now
it's working seperate table
public class Product{
public int Id { get; set; }
public int CategoryId { get; set; }
public string Name {get;set;}
public vitrual Category Category {get;set;}
}
public class Category{
public int Id { get; set; }
public string Name {get;set;}
public vitrual List<Product> Products {get;set;}
}
Hi Team,
The value of before and after not save data with nested table, how can I log all data change include (table relationship change)
Thanks
The text was updated successfully, but these errors were encountered: