Can I write the same queries (select, insert, update etc.) in LINQ to Entites that will be validate for SQL SERVER and Oracle database?
I thinking that if I write now query for SQL SERVER, it will be ok for future Oracle db…?
It’s exist pattern which provide interface for something like that ?
LINQ to entities is completely isolated from your data access layer and deals only with object services.
The actual database access is handled at a lower layer.