I have a view in the database.
How can i access this in linq.
The
var metaData = new LinqMetaData(adapter);
does not contain the values.
Thanks in advance
LINQ is for querieing entities only - to be able to get data from your view you can map an entity to it.
Matt