mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 20:38:16 +08:00
- 修复 ToTreeList 的问题 #255
This commit is contained in:
@ -712,7 +712,7 @@ namespace FreeSql.Internal.CommonProvider
|
||||
string key = null;
|
||||
if (tbref.RefColumns.Count == 1)
|
||||
{
|
||||
key = _orm.GetEntityValueWithPropertyName(tbref.RefEntityType, nav, tbref.RefColumns[0].CsName).ToString();
|
||||
key = _orm.GetEntityValueWithPropertyName(tbref.RefEntityType, nav, tbref.RefColumns[0].CsName)?.ToString() ?? "";
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -1043,7 +1043,7 @@ namespace FreeSql.Internal.CommonProvider
|
||||
{
|
||||
string key = null;
|
||||
if (tbref.Columns.Count == 1)
|
||||
key = _orm.GetEntityValueWithPropertyName(tbref.RefMiddleEntityType, midList[a], tbref.MiddleColumns[0].CsName).ToString();
|
||||
key = _orm.GetEntityValueWithPropertyName(tbref.RefMiddleEntityType, midList[a], tbref.MiddleColumns[0].CsName)?.ToString() ?? "";
|
||||
else
|
||||
{
|
||||
var sb = new StringBuilder();
|
||||
|
Reference in New Issue
Block a user