Skip to content

Commit

Permalink
[fix] ClientData was not avaialble on query tuning
Browse files Browse the repository at this point in the history
  • Loading branch information
korzh committed Nov 20, 2024
1 parent 90d1047 commit f8cf6b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion easydata.net/src/EasyData.Core/Entities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,8 @@ internal protected virtual void OnModelAssignment()
public string GetFullName(string separator)
{
string parentName = Parent?.GetFullName(separator);
string result = string.IsNullOrEmpty(parentName) ? Name : parentName + separator + Name;
string entityName = Name ?? "";
string result = string.IsNullOrEmpty(parentName) ? Name : parentName + separator + entityName;

return result;
}
Expand Down

0 comments on commit f8cf6b9

Please sign in to comment.