IUpdateSqlGenerator 接口
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
用于为插入、更新和删除命令以及所需的相关 SQL 操作生成 SQL 的服务 SaveChanges()
此类型通常由数据库提供程序使用;它通常不在应用程序代码中使用。
public interface IUpdateSqlGenerator
public interface IUpdateSqlGenerator : Microsoft.EntityFrameworkCore.Update.Internal.ISingletonUpdateSqlGenerator
type IUpdateSqlGenerator = interface
type IUpdateSqlGenerator = interface
interface ISingletonUpdateSqlGenerator
Public Interface IUpdateSqlGenerator
Public Interface IUpdateSqlGenerator
Implements ISingletonUpdateSqlGenerator
- 派生
- 实现
-
Microsoft.EntityFrameworkCore.Update.Internal.ISingletonUpdateSqlGenerator
注解
服务生存期为 Singleton。 这意味着多个实例使用 DbContext 单个实例。 实现必须是线程安全的。 此服务不能依赖于注册为 的服务 Scoped。
有关详细信息 和示例,请参阅数据库提供程序和扩展的实现 。