表达式树转换

发布于 2024-09-14 05:07:05 字数 563 浏览 4 评论 0 原文

我有两个类:

class Customer
{
    public string Fullname { get; set; }
    public string Lastname { get; set; }
    public int Age { get; set; }
}

现在

class CustomerDTO
{
    public string Fullname { get; set; }
    public string Lastname { get; set; }
    public int Age { get; set; }
}

我有一个表达式树 Expression>;表达式在层之间传递,我可以将其转换为Expression>吗?表达式 才能使用它,因为它会给出编译时错误!

提前致谢

I have two Classes :

class Customer
{
    public string Fullname { get; set; }
    public string Lastname { get; set; }
    public int Age { get; set; }
}

and

class CustomerDTO
{
    public string Fullname { get; set; }
    public string Lastname { get; set; }
    public int Age { get; set; }
}

now i have an expressiontree Expression<Func<Customer, bool>> expression Passed between layers , can i convert it to Expression<Func<CustomerDTO, bool>> expression to be able to use it since it would give compile time error!

thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

呆橘 2024-09-21 05:07:05

没关系,我做到了

Expression<Func<Customer, bool>> expression = v => v.Fullname == "Johm";
         var par = Expression.Parameter(typeof(CustomerDTO));
         Expression<Func<CustomerDTO, bool>> ex = (Expression<Func<CustomerDTO, bool>>)Expression.Lambda(expression.Body, par);

nevermind i made it

Expression<Func<Customer, bool>> expression = v => v.Fullname == "Johm";
         var par = Expression.Parameter(typeof(CustomerDTO));
         Expression<Func<CustomerDTO, bool>> ex = (Expression<Func<CustomerDTO, bool>>)Expression.Lambda(expression.Body, par);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文