如何从日常构建中获取 Entity Framework Core 6.0.1

How to get Entity Framework Core 6.0.1 from daily builds

我升级到 Entity Framework Core 6.0.0,但我需要修复文档中的问题 26632 which is flagged as fixed for 6.0.1 and is said to be included in the Daily Builds; I followed the instructions for using Daily Builds(我还将 dotnet7 更改为 dotnet6),但我没有看到任何版本使用“6.0.1-*”;我错过了什么吗?

编辑:选中包括售前赛。

nuget.config

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="dotnet6" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6/nuget/v3/index.json" />
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
  </packageSources>
</configuration>

ajcvickers 在 EF Core 问题 26632 上对我的 post 的回复澄清了回复,说修复程序在日常构建中可用。

“很遗憾,每日构建中不包含补丁。7.0.0 版本包含此修复程序。补丁计划在未来几天发布。”

感谢所有花时间帮助解决此问题的人。