我一直在使用 Nhibernate 一段时间,但想知道你是否可以使用父项的 Id 而不是整个父项来保存我的子实体。
Class Parent
{
int Id {get;set;}
string name {get;set;}
}
Class Child
{
int Id {get;set;}
string name {get;set;}
Parent parent {get;set;}
}
我一直在使用 Nhibernate 一段时间,但想知道你是否可以使用父项的 Id 而不是整个父项来保存我的子实体。
Class Parent
{
int Id {get;set;}
string name {get;set;}
}
Class Child
{
int Id {get;set;}
string name {get;set;}
Parent parent {get;set;}
}