I\'m looking for the fastest way of inserting into Entity Framework.
I\'m asking this because of the scenario where you have an active TransactionScope a
TransactionScope
Use stored procedure that takes input data in form of xml to insert data.
From your c# code pass insert data as xml.
e.g in c#, syntax would be like this:
object id_application = db.ExecuteScalar("procSaveApplication", xml)