如何将匿名对象传递给泛型函数?

How to pass a anonymous object into a generic function?

Tim Corey's ASP.NET and dapper tutorials 开始,我修改了一个通用函数来将 SQL 服务器数据库中的数据存储到 return 存储对象的 ID:

public async Task<T> SaveData<T, U>(
    string storedProcedure,
    U parameters,
    string connectionId = "DefaultDataConnection")
{
    using IDbConnection connection = new SqlConnection(_configuration.GetConnectionString(connectionId));

    T ID = await connection.ExecuteScalarAsync<T>(storedProcedure, parameters, commandType: CommandType.StoredProcedure);

    return ID;
}

问题如下:在教程的原始代码中,可以在不声明泛型参数类型的情况下调用该方法。然而,对于额外的通用 return 类型,这是没有必要的。问题是,这些方法通常是用匿名类型对象调用的,我不知道如何调用这些方法:

// this is within the insert method of my class, which is responsible for handling the images table:
int insertedID = await _db.SaveData<int, ????>("dbo.spImage_Insert", new { image.UserID, image.FileName, image.UploadDate });

应该怎么做?我必须使用显式类型而不是匿名对象吗?

Edit:return 值之所以通用,是因为 ID 可以是 intlongstringGUID。

我不得不同意“这里的参数只使用 object”的评论,但是;在更一般的情况下:


要在此处使用匿名对象执行您想要的操作,您需要将 API 一分为二;例如,代替 SaveData<T, U> 考虑:

int x = Save(new { image.UserID, image.FileName, image.UploadDate })
          .Expect<int>();

可以实现为:

NamingIsHard<T> Save<T>(T x);

public readonly struct NamingIsHard<T>
{
    T theT; // and other things; possibly the connection, etc
    // ...
    public U Expect<U>() {
       // here you have a T and a U; do your thing!
    }
}