Hi there,
In my Blazor Server application, I am trying to insert excel data into a SQL database table. I am getting this error, but couldn't figure out why.
Here is the sample excel, I am trying to bulk insert.
Here is the table;
CREATE TABLE [dbo].[RazerReconciliation](
[PID]...
0
I am trying to populate my database column with name "StockInTable" using Dapper Plus nugget package. My stockin file is as below.
class Stockin
{
[Key]
public int ID { get; set; }
public DateTime Date { get; set; }
public string Sup_ID { get; set; }
public string Sup_Name...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.