IMigrationsModelDiffer.HasDifferences 方法

定义

重载

HasDifferences(IModel, IModel)

检查两个模型之间是否存在差异。

HasDifferences(IRelationalModel, IRelationalModel)

检查这两个模型之间是否存在差异。

HasDifferences(IModel, IModel)

检查两个模型之间是否存在差异。

public bool HasDifferences (Microsoft.EntityFrameworkCore.Metadata.IModel source, Microsoft.EntityFrameworkCore.Metadata.IModel target);
abstract member HasDifferences : Microsoft.EntityFrameworkCore.Metadata.IModel * Microsoft.EntityFrameworkCore.Metadata.IModel -> bool
Public Function HasDifferences (source As IModel, target As IModel) As Boolean

参数

source
IModel

第一个模型。

target
IModel

第二个模型。

返回

True

适用于

HasDifferences(IRelationalModel, IRelationalModel)

Source:
IMigrationsModelDiffer.cs
Source:
IMigrationsModelDiffer.cs
Source:
IMigrationsModelDiffer.cs

检查这两个模型之间是否存在差异。

public bool HasDifferences (Microsoft.EntityFrameworkCore.Metadata.IRelationalModel source, Microsoft.EntityFrameworkCore.Metadata.IRelationalModel target);
public bool HasDifferences (Microsoft.EntityFrameworkCore.Metadata.IRelationalModel? source, Microsoft.EntityFrameworkCore.Metadata.IRelationalModel? target);
abstract member HasDifferences : Microsoft.EntityFrameworkCore.Metadata.IRelationalModel * Microsoft.EntityFrameworkCore.Metadata.IRelationalModel -> bool
Public Function HasDifferences (source As IRelationalModel, target As IRelationalModel) As Boolean

参数

source
IRelationalModel

第一个模型。

target
IRelationalModel

第二个模型。

返回

true 如果有任何差异, false 则为 ;否则为 。

适用于