using System; using System.Collections.Generic; using System.Linq.Expressions; using System.Text; namespace SqlSugar { internal class AppendNavInfo { public Dictionary MappingNavProperties { get; set; }= new Dictionary(); public Dictionary AppendProperties { get; set; }= new Dictionary(); public List Result { get; set; } =new List(); } internal class AppendNavResult { public Dictionary result = new Dictionary(); } internal class MappingNavColumnInfo { public List ExpressionList { get; set; } public string Name { get; set; } public string ParentName { get; set; } } }