本人在写程序的时候出现的命名空间被当做类来引用提示请教如何解决

本人在写程序的时候出现的命名空间被当做类来引用提示请问怎么解决

namespace Forum.DAL
{
public static partial class ForumService
{
  public static Forum AddForum(Forum forum)
{
  string sql =
"INSERT Forum (F_Title, F_Content, F_Reply, F_Name, F_Rname, F_plate, F_dateline, F_Rdateline)" +
"VALUES (@F_Title, @F_Content, @F_Reply, @F_Name, @F_Rname, @F_plate, @F_dateline, @F_Rdateline)";

sql += " ; SELECT @@IDENTITY";

  try

------解决方案--------------------
用using指定一个别名