大家好。
我正在创建一个网站。在这个网站上,我添加了三个文件夹:
- 实体
- 商业逻辑
- 数据访问逻辑
现在我想将实体文件夹类功能访问到业务逻辑文件夹类中。
但是当我尝试将该类的命名空间添加到我的另一个类中时,它不会显示类的名称(没有智能)。
这是我的实体类代码
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)。但我无法做到这一点。
请告诉我哪里错了