gpt4 book ai didi

c# - 从一种通用方法传递对象,其中 T : MyClass to another where T : DerivedClass

转载 作者:行者123 更新时间:2023-11-30 22:19:13 25 4
gpt4 key购买 nike

我有一个包含此方法的通用存储库:

public void Delete<T>(T item) where T : EntityBase

我正在尝试为某些对象添加软删除行为; IE。删除时,它们不会从数据库中删除,而是将 bool Deleted 设置为 false 并且它们将停止显示在查询中,除非将特定参数设置为包含它们。通常,应用程序的行为就像它们不存在一样,但管理 View 除外,在这些 View 中,可以通过再次翻转该 bool 来恢复这些项目。我的问题是,在将对象传递给此方法时,它被作为 EntityBase 处理,它没有这种软删除行为,因为许多类不需要它。 SoftDeleteEntityBase 扩展了 EntityBase 类以添加软删除行为,但我找不到一种干净的方法来转换对象以便我可以获取 bool。我的第一个想法是:

public void Delete<T>(T item) where T : EntityBase
{
if (item is SoftDeleteEntityBase)
{
((SoftDeleteEntityBase)item).Deleted = true;
Update<T>(item);
}
else
{
db.Set<T>().Remove(item);
}
}

但这给了我错误 “无法将类型 T 转换为 SoftDeleteEntityBase”

我如何获得该 bool 值?

最佳答案

这个简短的解决方案怎么样,但考虑更改存储库的设计

SoftDeleteEntityBase itemAsSoft = item as SoftDeleteEntityBase;
if (itemAsSoft != null)
{
itemAsSoft.Deleted = true;
Update(itemAsSoft);
}

我不知道你的上下文,但是这个带有环绕泛型的解决方案怎么样

void Main()
{
Delete(new Base()); // called with base
Delete(new Derived()); //called with derived
}
public void Delete(Base item)
{
Console.WriteLine ("called with base");
//one logic
GenericDelete(item);
}

public void Delete(Derived item)
{
Console.WriteLine ("called with derived");
//another logic
GenericDelete(item);
}

public void GenericDelete<T>(T item)
{}

public class Base
{}

public class Derived : Base
{}

关于c# - 从一种通用方法传递对象,其中 T : MyClass to another where T : DerivedClass,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15688198/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com