Skip to content
New issue

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

the data not save nested table #37

Open
jindovu opened this issue Sep 16, 2019 · 2 comments
Open

the data not save nested table #37

jindovu opened this issue Sep 16, 2019 · 2 comments

Comments

@jindovu
Copy link

jindovu commented Sep 16, 2019

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

@rigofunc
Copy link
Member

Have some demo about this?

@jindovu
Copy link
Author

jindovu commented Jan 15, 2020

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;}
}

Thank you for asking

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants