-
Notifications
You must be signed in to change notification settings - Fork 861
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
一对一多字段关联 #1930
Comments
List 设置关联字段 |
比如下面的类我该如何完善呢? public class Article {
public long Id {get; set;}
public Seo Seo {get;set;}
}
public class Category{
public long Id {get; set;}
public Seo Seo {get;set;}
}
public class Seo {
public long id {get;set;}
} |
public class Article {
public long Id {get; set;}
public long SeoId {get; set;}
public Seo Seo {get;set;}
}
public class Category{
public long Id {get; set;}
public long SeoId {get; set;}
public Seo Seo {get;set;}
}
public class Seo {
public long id {get;set;}
} |
这个没法级联保存吗?需要分开写保存代码? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
使用场景
The text was updated successfully, but these errors were encountered: