4

考虑以下 TSql 代码:

CREATE TABLE Employee 
(  
  [EmployeeID] int NOT NULL PRIMARY KEY CLUSTERED 
  , [Name] nvarchar(100) NOT NULL
  , [Position] varchar(100) NOT NULL 
  , [Department] varchar(100) NOT NULL
  , [Address] nvarchar(1024) NOT NULL
  , [AnnualSalary] decimal (10,2) NOT NULL
  , [ValidFrom] datetime2 (2) GENERATED ALWAYS AS ROW START
  , [ValidTo] datetime2 (2) GENERATED ALWAYS AS ROW END
  , PERIOD FOR SYSTEM_TIME (ValidFrom, ValidTo)
 )  
 WITH (SYSTEM_VERSIONING = ON (HISTORY_TABLE = dbo.EmployeeHistory));

...以及以下使用 DACFx 的 C# 代码:

TSqlObject table;
TSqlObject nameColumn;

// picture some code instantiating the two variables above

var primaryKey = table.GetChildren().Single(x => x.ObjectType == ModelSchema.PrimaryKeyConstraint);
var isMax = nameColumn.Object.GetProperty<bool?>(Column.IsMax);

所以在这里我们看到我已经查询了 DACFx API 以查明列实例是否是MAX类型的列,并获取有关表主键的信息。

现在我想知道表格的时间设置。我需要知道是否SYSTEM_VERSIONING打开,如果打开,用作历史表的表是什么。我也想知道哪些字段用作行的开始和结束。

我如何使用 DACFx API 知道这一点?

4

1 回答 1

2

我知道这是一个老问题,但我花了一整天的时间终于弄清楚如何拉动 SYSTEM_VERSIONING 设置。希望这对其他人有帮助:

TSqlObject table;

// Code initializing the variable

// Get the type of retention. This can be either -1 (if Infinite)
// or one of the value in the TemporalRetentionPeriodUnit enum
var retentionUnit = table.GetProperty<int>(Table.RetentionUnit);

// Get the retention value. If retention is Infinite this will be -1
var retentionValue = table.GetProperty<int>(Table.RetentionValue);

// Get a reference to the history table. 
var historyTable = table.GetReferenced(Table.TemporalSystemVersioningHistoryTable);
于 2019-07-17T08:09:49.843 回答