键未定义异常代码先模型
本文关键字:模型 代码 异常 未定义 | 更新日期: 2023-09-27 17:50:45
安装实体框架使用nuget(6.0)安装2项目类库包含模型和控制台应用程序,两者都有EF安装
我有以下模型
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace IdeaGen.Models
{
public class User
{
[Key]
public long Id;
public UserStatus Status;
public ICollection<UserActivityLog> Logs { get; set; }
public ICollection<UserMailerLog> MailerLogs { get; set; }
[MaxLength(255)]
public string Email { get; set; }
public DateTime CreatedAt { get; set; }
public enum UserStatus
{
Pending
}
public User()
{
this.Status = UserStatus.Pending;
this.CreatedAt = DateTime.Now;
// this.Id = Guid.NewGuid();
this.Logs = new List<UserActivityLog>();
this.MailerLogs = new List<UserMailerLog>();
}
}
}
我第一次尝试使用控制台应用程序保存到数据库
class Program
{
static void Main(string[] args)
{
var session = new Session();
var user = new User{Email="test@test.com"};
Console.WriteLine((user.Id));
session.Users.Add(user);
session.SaveChanges();
Console.WriteLine("Done!");
Console.Read();
}
}
在Users.Add(user)上得到一个异常Users: EntityType: EntitySet 'Users'是基于没有定义键的类型'User'。
我最初将键Id定义为GUID,还添加了一个显式的[key]属性来尝试使其工作。你知道我错过了什么吗?装置有问题吗?
实体框架成员应该是属性;我的意思是他们必须有一个公共的getter
和setter
方法:
改变:
public long Id;
:
public long Id { get; set; }