skip to Main Content

Why do I get the Exception SqlException IDENTITY_INSERT is set to OFF – Asp.net

HeuteDb heute = new HeuteDb(); string filePath = @"C:UsersEliasDesktopASPlearningDATAData.csv"; using (StreamReader reader = new StreamReader(filePath)) { string line; while ((line = reader.ReadLine()) != null) { List<string> items = line.Split(';').ToList(); heute.Uhrzeit = items[0]; heute.Energie = items[1]; _context.HeutesDb.Add(heute); _context.SaveChanges(); } } I…

VIEW QUESTION
Back To Top
Search