When I execute a SQL Server stored procedure from Entity Framework Core (v2.0) in my ASP.NET Core project, I get this exception:
InvalidOperationException: no mapping to a relational type can be found for the CLR type 'Int32[]'
The SQL Server stored procedure code looks like this:
CREATE PROCEDURE [dbo].[sp-UpdateProductOrderAndStock]
@customerOrderID INT,
@qty INT
AS
DECLARE @customerProductID INT
SET @customerProductID = (SELECT CustomerProductID
FROM dbo.CustomerOrder
WHERE ID = @customerOrderID)
SET NOCOUNT ON;
UPDATE dbo.CustomerOrder
SET CompletedQty = CompletedQty + @qty
WHERE ID = @customerOrderID;
UPDATE dbo.CProductStation
SET Qty = Qty - @qty
WHERE CustomerProductID = @customerProductID AND StationNo = 0;
ASP.NET Core data model as below:
public class CustomerProductDelivery
{
public int ID { get; set; }
public int CustomerOrderID { get; set; }
public DateTime DeliveryDate { get; set; }
public string DeliveryNo { get; set; }
public int DeliveryQty { get; set; }
public CustomerOrder CustomerOrder { get; set; }
}
ASP.net core Controller code to execute the stored procedure:
_context.Database.ExecuteSqlCommand("sp-UpdateProductOrderAndStock @p0, @p1", parameters: new[] { customerProductDelivery.CustomerOrderID,customerProductDelivery.DeliveryQty });
[dbo].[Update_ProductOrderAndStock]
- but you're calling a procedure calledsp-UpdateProductOrderAndStock
from EF Core ..... those names must match ! – marc_s