使用泛型的 C# 存储库

发布于 2024-09-27 01:16:19 字数 790 浏览 3 评论 0原文

我有以下用于单元测试的存储库:

public class MyTestRepository<T>
{
    private List<T> entities = new List<T>();

    public IQueryable<T> Entities
    {
        get { return entities.AsQueryable(); }
    }

    public T New()
    {
        //return what here???
    }

    public void Create(T entity)
    {
        entities.Add(entity);
    }

    public void Delete(T entity)
    {
        entities.Remove(entity);
    }
}

我在 New() 方法中返回什么?

我已经尝试过:

    public T New()
    {
        return (T) new Object();
    }

但是当我运行单元测试时,这给了我以下异常:

System.InvalidCastException: Unable to cast object of type 'System.Object' to type 'MyCustomDomainType'.

关于如何实现 New() 方法有任何想法吗?

I have the following repository that I use for unit testing:

public class MyTestRepository<T>
{
    private List<T> entities = new List<T>();

    public IQueryable<T> Entities
    {
        get { return entities.AsQueryable(); }
    }

    public T New()
    {
        //return what here???
    }

    public void Create(T entity)
    {
        entities.Add(entity);
    }

    public void Delete(T entity)
    {
        entities.Remove(entity);
    }
}

What do I return in the New() method?

I have tried this:

    public T New()
    {
        return (T) new Object();
    }

But that gives me the following exception when I run my unit test:

System.InvalidCastException: Unable to cast object of type 'System.Object' to type 'MyCustomDomainType'.

Any idea on how to implement the New() method?

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

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

发布评论

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

评论(4

七分※倦醒 2024-10-04 01:16:19

您可以为 T 类型参数添加约束:

public class MyTestRepository<T> where T : new() 

并在方法中return new T();

You could add a constraint for the T type parameter:

public class MyTestRepository<T> where T : new() 

and return new T(); in the method.

删除会话 2024-10-04 01:16:19

您应该通过添加 new() 约束来更改存储库定义,如下所示:

public class MyTestRepository<T> where T : new()
{
    ...
}

这将可与 MyTestRepository 一起使用的类型限制为具有默认构造函数的类型。现在,在您的 New() 方法中您可以执行以下操作:

public T New()
{
    return new T();
}

You should change your repository definition by adding the new() constraint, like this:

public class MyTestRepository<T> where T : new()
{
    ...
}

This constrains types that can be used with MyTestRepository to those that have a default constructor. Now, in your New() method you can do:

public T New()
{
    return new T();
}
ㄖ落Θ余辉 2024-10-04 01:16:19

假设类型 T 有一个公共/默认构造函数,这不会纠正异常吗?

public T New()
{
    return new T();
}

Assuming type T has a public / default constructor, would this not correct the exception?

public T New()
{
    return new T();
}
猛虎独行 2024-10-04 01:16:19

这是行不通的,因为你只是创建一个对象,没有其他任何东西。如何使用 Activator 创建对象:

return (T)Activator.CreateInstance(typeof(T));

请参阅:http://msdn.microsoft .com/en-us/library/system.activator.aspx

That won't work as you're just creating an object, nothing else. How about creating the object with Activator:

return (T)Activator.CreateInstance(typeof(T));

See: http://msdn.microsoft.com/en-us/library/system.activator.aspx

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