I want to use Entity Framework 4 but without using complex linq queries only some very simple ones like get by id or xField = value or to insert and update.
Do you guys think the performance in this case will be near to the performance of SqlCommand ? Because there is really no overhead.
If the queries are simple selectds andget by ID, EF will, be slightly worse than SQLCommand, but minimal. The additional overhead will be unnoticeable.