Murmeldyret / P3-Project

2 stars 0 forks source link

Database - Create a reference SQLite database #40

Closed Decode84 closed 1 year ago

Decode84 commented 2 years ago

When the data from the reference execl has been achieved write the references to the SQLite database.

SilverBrother commented 2 years ago

context.Entry(NewReference).State = EntityState.Added; context.SaveChanges(); Or context.Add(NewReference); context.SaveChanges();

Insert this in a while loop?