Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Query Problem
Message
General information
Forum:
ASP.NET
Category:
LINQ
Title:
Query Problem
Miscellaneous
Thread ID:
01476194
Message ID:
01476194
Views:
102
I'm trying to retrieve an application from my database. I have a Data Context in my app called AppSecurityDataDataContext. Here's my query:
{ 
    AppSecurityDataDataContext dc = new AppSecurityDataDataContext();
    var app = from a in dc._Applications
                where a.ApplicationId = ApplicationID
                select a;

}
I'm getting "Could not find an implementation of the query pattern for source type 'System.Data.Linq.Table<AppSecurity._Application>'. 'Select' not found. Are you missing a reference to 'System.Core.dll' or a using directive for 'System.Linq'?"

I have the using statement in my class. This other method works:
public static void AddApplication(Application Application)
{
    _Application app = new _Application
    {
        ApplicationName = Application.ApplicationName
    };

    _DataContext._Applications.InsertOnSubmit(app);

    try
    {
        _DataContext.SubmitChanges();
    }
    catch (Exception e)
    { 
    }
}
Anyone see what's wrong here?
Everything makes sense in someone's mind
public class SystemCrasher :ICrashable
In addition, an integer field is not for irrational people
Next
Reply
Map
View

Click here to load this message in the networking platform