Linq to DB Driver - Postgresql
I'm tried this in both LinqPad 7 & 8. I'm using the "Linq to DB Driver" to connect to my Postgres server. I want to update a number of records in a single table and then call SubmitChanges(). However, SubmitChanges() doesn't exist, SaveChanges() doesn't exist and nothing else seems to be available to submit my changes.
The only thing I've found is being able to issue a this. Update(object)
- that's not ideal, I want the updates to go at once, not row by row.
Is this a limitation in the "Linq to DB" driver or is it a new command I'm just not seeing?
Thanks.
Comments
This will be in the documentation for LINQ-to-DB:
https://linq2db.github.io/
SubmitChanges
is a part of Entity Framework change tracking API and not available in linq2db (as it is not entity framework).