我是ORM的新手所以请冷静地回答我的问题。 我已经使用Dapper属性构建了一个POCO管理类,并使用Implemented IDataErrorInfo在我的Model类上进行了验证 在这里:
public partial class Admin:IDataErrorInfo {
[Key]
public long Admin_Id { get; set; }
public string Admin_Name { get; set; }
public string Password { get; set; }
public virtual IEnumerable<Verifying_Agent> Verifying_Agent { get; set; }
public string Error
{
get { throw new NotImplementedException(); }
}
public string this[string columnName]
{
get
{
switch (columnName)
{
case "Admin_Name":
if (string.IsNullOrEmpty(Admin_Name))
return "Admin Name is required";
break;
case "Password":
if (string.IsNullOrEmpty(Password))
return "Password is Required";
break;
}
return "";
}
}
}
但是当我执行简单CRUD操作的Dapper.Simple CRUD库时 即
conn= new SQLiteConnection("Data Source=" + Environment.CurrentDirectory + "\\SystemDB.db");
var admit = conn.Get<Admin>("select * from Admin");
我收到以下错误“列或数据库不存在”
如果我删除了IDataErrorInfo实现,那么Error就会消失。 使用Dapper时是否有什么东西丢失或者这个库中有错误?
答案 0 :(得分:0)
我不相信库中存在错误,尽管创建了一个几乎相同的类并对SQLite数据库执行类似的查询,但我仍无法重现您的问题。
这是我使用的课程:
class Post : IDataErrorInfo
{
[Key]
public int Id { get; set; }
public string Title { get; set; }
public string Markdown { get; set; }
public string Error
{
get { throw new NotImplementedException(); }
}
public string this[string columnName]
{
get
{
switch (columnName)
{
case "Title":
if (string.IsNullOrEmpty(Title))
return "Title is required";
break;
case "Markdown":
if (string.IsNullOrEmpty(Markdown))
return "Markdown is required";
break;
}
return "";
}
}
}
这就是我查询数据库的方式:
using (var conn = new SQLiteConnection("Data Source=" + Environment.CurrentDirectory + "\\Blog.sqlite"))
{
var posts = conn.Query<Post>("SELECT * FROM Posts");
Console.WriteLine(posts.Count() + " post(s) retrieved");
}
我不确定导致您出现问题的原因,但我确信它不是Dapper。
我对于为什么删除IDataErrorInfo接口会影响此错误感到困惑:
列或数据库不存在
听起来,无论您尝试填充的类型如何,查询都会失败。