C# 在 lambda 中转换对象

发布于 2024-10-22 05:07:39 字数 748 浏览 5 评论 0原文

我目前正在尝试设置业务逻辑中需要的字段,在本例中是“Lazy”。 (是的不是属性,需要设置字段) 我收到错误,无法将 Lazy 转换为 Lazy 如你看到的:

对象类型 'BusinessLogic.Lazy1[System.Object]' 无法转换为类型 'BusinessLogic.Lazy1[BusinessLogic.ArtikelBLL]

我使用此行来获取动态存储库。

dynamic repository = Activator.CreateInstance(typeof(GenericRepository<>).MakeGenericType(typeArgs));

然后我尝试设置该字段的值,但失败了:

fInfo.SetValue(obj, Lazy.From(() => repository.GetDataById(id)));

我尝试了多种不同的方法来解决它。 不知怎的,我必须将repository.GetDataById(id)转换为它正在寻找的实体,在本例中是ArtikelBLL(我可以通过pInfo.PropertyType获得)。 但通过执行 (ArtikelBLL)repository.GetDataById(id) ,它不会保持面向对象的状态。 有人可以帮我解决这个问题吗?

I am currently trying to set a field which I need in business logic which in this case is Lazy.
(yes not the property, it is necessary to set the field)
I get the error that Lazy can not be converted to Lazy
as you can see:

Object of type
'BusinessLogic.Lazy1[System.Object]'
cannot be converted to type
'BusinessLogic.Lazy
1[BusinessLogic.ArtikelBLL]

I use this line to get a dynamic repository.

dynamic repository = Activator.CreateInstance(typeof(GenericRepository<>).MakeGenericType(typeArgs));

Then I try to set the value of the field but it fails:

fInfo.SetValue(obj, Lazy.From(() => repository.GetDataById(id)));

I have tried to solve it many different ways.
Somehow I have to cast repository.GetDataById(id) to the Entity it is looking for, which in this case is ArtikelBLL (which i can get through pInfo.PropertyType).
But by doing (ArtikelBLL)repository.GetDataById(id) it will not remain object orientated.
Can anybody please help me with this?

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

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

发布评论

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

评论(1

英雄似剑 2024-10-29 05:07:39

最简单的方法是在 lambda 内部使用强制转换:

fInfo.SetValue(obj, new Lazy<GenericBLL>(
    () => (ArtikelBLL) repository.GetDataById(id)));

毕竟,这就是 Lazy 想要的类型。

编辑:如果您尝试动态执行此操作,我建议您编写一个如下所示的通用方法:

public Lazy<T> CreateLazyDataFetcher<T>(dynamic repository)
{
    return new Lazy<T>(() => (T) repository.GetDataById(id));
}

然后使用反射调用该方法。 (使用 MethodInfo.MakeGenericMethod(...).Invoke(...) )

The simplest way would be to just use a cast inside the lambda:

fInfo.SetValue(obj, new Lazy<GenericBLL>(
    () => (ArtikelBLL) repository.GetDataById(id)));

After all, that's the type the Lazy<T> wants.

EDIT: If you're trying to do this dynamically, I suggest you write a generic method like this:

public Lazy<T> CreateLazyDataFetcher<T>(dynamic repository)
{
    return new Lazy<T>(() => (T) repository.GetDataById(id));
}

Then call that method with reflection. (Using MethodInfo.MakeGenericMethod(...).Invoke(...))

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文