The entity type 'ExtraPropertyDictionary' requires a primary key to be defined.

The entity type 'ExtraPropertyDictionary' requires a primary key to be defined. If you intended to use a keyless entity type, call 'HasNoKey' in 'OnModelCreating'. For more information on keyless entity types, see https://go.microsoft.com/fwlink/?linkid=2141943.

 

 

解决方案:

 modelBuilder.Entity<MyEntity>(entity =>
        {
            entity.HasKey(e => e.FuelExciseId);
            entity.ConfigureByConvention();
        });

作者:Chuck Lu    GitHub    
posted @   ChuckLu  阅读(897)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
历史上的今天:
2021-11-08 OneTrust Cookies
2020-11-08 Building Cython code
2020-11-08 Getting started with JupyterLab
2020-11-08 Installing Cython
2020-11-08 冒泡排序Bubble sort
2018-11-08 AutoEventWireup
2017-11-08 Authentication configuration in asp.net
点击右上角即可分享
微信分享提示