MikaelEliasson / EntityFramework.Utilities

Provides extensions for EntityFramework that doesn't exist out of the box like delete and update by query and bulk inserts
443 stars 176 forks source link

any examples of the <list> required for bulk insert? #98

Open snobrdinrtiste opened 8 years ago

snobrdinrtiste commented 8 years ago

hello, i'm a noob in EF/LINQ and I have a project that needs to do a bulk insert of about 40 records at a time. the json object i'm sending over via http.post looks like the following: { questiondata100: "true", questionnotes100: "test comment 0", questiondata101: "true", questionnotes101: "test comment 1", questiondata102: "false", questionnotes102: "test comment 2" }

are there any examples showing the structure needed for the bulk insert?