大家好。
我正在创建一个网站。在这个网站上我添加了三个文件夹:
现在我想将实体文件夹类函数访问到业务逻辑文件夹类中。
但是当我尝试将该类的名称空间添加到我的另一个类中时,它没有显示类的名称(没有智能)。
这是我的实体类代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
/// <summary>
/// Summary description for State
/// </summary>
namespace StateBLL
{
public class State
{
#region private variable
private string _State;
#endregion
#region Properties
public string State
{
get
{
return _State;
}
set
{
_State = value;
}
}
#endregion
}
}
我想在另一个类中访问此类(StateBLL)。 但我无法做到这一点 请告诉我我错在哪里
答案 0 :(得分:1)
尝试将实体库的引用添加到您的商务库,然后添加
using YourEntityLibray;
在商务图书馆的课程中
答案 1 :(得分:0)
您需要按照以下步骤操作
right click BL-->Add reference-->Projects--> select entities project
现在在您要实例化类添加
的页面上using nameofyourentitylibrary; //replace nameofyourentitylibrary with the name of namespace
现在你可以实例化
答案 2 :(得分:0)
首先,请记住实体确保它应该是公开的,因此您可以随时随地访问 第二,构建实体类并添加对另一个类的引用,通过右键单击文件夹添加引用。 之后添加实体名称空间,然后您可以访问您的实体类