you can reference the metaModel via the dataContext
MetaModel refMetaModel = MetaModel.GetModel(typeof(yourdataContextName));
MetaTable refMetaModel;
refMetaModel = refMetaModel.GetTable("yourTableName");
PS looked at your code and this works in your sceanrio. You can get the tables from the model then inspect the data returned for each table in the model