如何使用petapoco存储过程

时间:2013-07-04 06:02:57

标签: petapoco

我在数据库中创建了一个存储过程。

 var db = new PetaPoco.Database("connection name");
            return db.Query<sppoco>("exec spstp"); 

我在模型中声明了spppoco.cs,其中包含我在存储过程中使用的列名

 public class spppoco
    {
        public int rid { get; set; }
        public string name { get; set; }
        public int Address { get; set; }

    }

但是当我执行时,我收到的错误就像无效的对象名称'sppoco'。

1 个答案:

答案 0 :(得分:2)

这很简单!这只是一个错字。

enter image description here