Determines how LINQ is used for object tracking.

In connected mode all changes are tracked until SubmitChanges or Save is called. Save() reverts to calling SubmitChanges.

In disconnected mode a new context is created for each data operation and save uses Attach to reattach to a context.

Use Connected for much better performance use disconnected if you prefer atomic operations in the database with individual entities.