System.InvalidCastException:“The SqlParameterCollection only accepts non-null SqlParameter type objects, not SqlParameter objects.”
时间: 2024-04-15 20:31:52 浏览: 342
这个异常通常是由于使用了错误的参数类型导致的。根据你提供的异常信息,看起来是在使用 `SqlParameter` 时出现了问题。
在使用 `ExecuteSqlRaw` 或 `ExecuteSqlInterpolated` 方法时,应该使用 `Microsoft.Data.SqlClient.SqlParameter` 类型而不是 `System.Data.SqlClient.SqlParameter` 类型。
请确保在代码中引用了正确的命名空间,并使用 `Microsoft.Data.SqlClient.SqlParameter` 类型来创建参数对象。
以下是一个修正该异常的示例代码:
```csharp
using Microsoft.EntityFrameworkCore;
using Microsoft.Data.SqlClient; // 确保引用了正确的命名空间
// 创建 DbContext 类
public class YourDbContext : DbContext
{
public YourDbContext(DbContextOptions<YourDbContext> options) : base(options)
{
}
// DbSet 和其他属性...
public DbSet<IPS_Invoice> IPS_Invoices { get; set; }
}
public class IPS_Invoice
{
public int IPS_ID { get; set; }
public bool BLOCK { get; set; }
public DateTime? BLOCKTIME { get; set; }
}
public class YourRepository
{
private readonly YourDbContext _dbContext;
public YourRepository(YourDbContext dbContext)
{
_dbContext = dbContext;
}
public string UpdateBlockTime(IPS_Invoice model)
{
string message = "";
try
{
int affectedRows = _dbContext.Database.ExecuteSqlInterpolated($"UPDATE IPS_Invoices SET BLOCK = true, BLOCKTIME = {DateTime.Now} WHERE IPS_ID = {model.IPS_ID}");
if (affectedRows > 0)
{
message = "True";
}
else
{
message = "No records updated";
}
}
catch (Exception e)
{
message = "False";
// 处理异常...
}
return message;
}
}
```
请确保在代码中引用了正确的 `Microsoft.Data.SqlClient` 命名空间,并使用 `Microsoft.Data.SqlClient.SqlParameter` 类型来创建参数对象。这样应该可以解决该异常。
如果问题仍然存在,请提供更多相关的代码和异常堆栈信息,以便我能够更好地帮助你。
阅读全文