我有两张非常简单的桌子
CREATE TABLE `site` (
`id` int(2) NOT NULL AUTO_INCREMENT,
`Name` text COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
和
CREATE TABLE `program` (
`Contract` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`Name` text COLLATE utf8_unicode_ci NOT NULL,
`SiteId` int(2) NOT NULL,
PRIMARY KEY (`Contract`),
KEY `SiteId` (`SiteId`),
CONSTRAINT `SiteId` FOREIGN KEY (`SiteId`) REFERENCES `site` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
节目表的 SiteId 字段上有一个 FK。
当我尝试使用生成模型时
dotnet ef dbcontext scaffold "constring" "Pomelo.EntityFrameworkCore.MySql" -f -o "Models" -d
它返回错误
The collection argument 'properties' must contain at least one element.
删除模型生成的 FK 很好。我的模型有什么问题?