LINQ Question - Stuck on Compile Error
I'm trying to grab an email address out of an email table.
All the examples show this type of syntax ...
EmailAddress email = data.EmailAddresses.Select(e => e.EmailAddressId == license.EmailToSendLicense);
But I get this compile error.
Error 1 'System.Data.DLinq.Table<Test.EmailAddress>' does not contain a definition for 'Select'
Thanks for help anyone?