Hello, I worked with Dblinq on a few projects, with Oracle DB. For some reason sometimes the classes created by DbMetal contain the tables of Database schema and sometimes, they just contain the DB itself without any tables.
When it does contain the table, I can run a query using the table properties - var row = from p in _db.TABLENAME where p.FIELDNAME== VALUE select p; When it doesn't contain the table, I have to write a SQL query and execute it - IEnumerable<TYPE> results = _db.ExecuteQuery<TYPE>(query); How can I make sure that the table would always be available? Thank you -- You received this message because you are subscribed to the Google Groups "DbLinq" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/dblinq?hl=en.
