This question is locked. New answers and comments are not allowed.
I generated a class from by reverse mapping and try to access an object by:
Database db = Database.Get("orderconnection");
IObjectScope scope = db.GetObjectScope();
Order order = (from c in scope.Extent<Order>() select c).First();
I can not compile because the method Extent is not found.
What is wrong here?
I use version 2009.1.405.1
regards Mathias