I m facing a strange type of issue.
In my VS Solution I have 3 projects.
- ASP.Net App
- C# Class Library (Used as my DAL and contains a EF .edmx file.
- Windows Service App
伙伴关系。 网上应用可以精选地查阅欧洲复兴开发银行模式,我可以使用传统的Linq或Lambda .First()等。 一切产品都进行罚款。
On my Windows Service App, I ve added a reference to the DAL DLL , but for some reason, the Intellisense does not show up when I type in any code files in the windows service library. Example of my code below :
using System;
using System.Collections.Generic;
using System.Text;
using System.Linq;
namespace alertservice
{
class AlertPolling
{
dal.applicationEntities ent;
public AlertPolling()
{
ent = new dal.applicationEntities();
ent.Queries. // <--- ZERO INTELLISENSE HAPPENING HERE.
}
public void StartPolling()
{
}
}
}