我正在使用实体框架 5 - 代码优先。
我有一个要连接的数据库,现在已经存在了一段时间(我没有创建它)。有一个表叫T_Customers
. 它包含所有客户的列表。它具有以下结构(仅部分显示):
Customer_id | numeric (5, 0) | auto increment | not null (not set as primary key)
FName | varchar(50) | not null
LName | varchar(50) | not null
我的Customer
班级:
public class Customer : IEntity
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
我的IEntity
界面:
public interface IEntity
{
int Id { get; set; }
}
我的数据库上下文类中有以下内容:
public class DatabaseContext : DbContext
{
public DatabaseContext(string connectionString)
: base(connectionString)
{
}
public DbSet<Customer> Customers { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Configurations.Add(new CustomerConfiguration());
}
public new DbSet<TEntity> Set<TEntity>()
where TEntity : class, IEntity
{
return base.Set<TEntity>();
}
}
我的客户配置类:
class CustomerConfiguration : EntityTypeConfiguration<Customer>
{
internal CustomerConfiguration()
{
this.ToTable("T_Customers");
this.Property(x => x.Id).HasColumnName("Customer_id");
this.Property(x => x.FirstName).HasColumnName("FName");
this.Property(x => x.LastName).HasColumnName("LName");
}
}
我试图在我的实体声明中保持一致,我需要所有的 ID 都是整数。这个客户 ID 在数据库中是数字类型,现在我在尝试返回所有客户的列表时遇到了问题。如何从数据库数字类型映射到 C# 整数类型?我不会将班级的 ID 更改为可为空或十进制,我的 ID 始终是不可为空的整数。我也无法更改数据库。
我得到的错误是:
The 'Id' property on 'Customer' could not be set to a 'Decimal' value.
You must set this property to a non-null value of type 'Int32'.