SqlExecutionResult.RowsAffected Property
Gets an array of integers that indicates the number of rows affected by each statement in the test that affects the database.
Namespace: Microsoft.Data.Tools.Schema.Sql.UnitTesting
Assembly: Microsoft.Data.Tools.Schema.Sql.UnitTesting (in Microsoft.Data.Tools.Schema.Sql.UnitTesting.dll)
Syntax
public int[] RowsAffected { get; set; }
public:
property array<int>^ RowsAffected {
array<int>^ get();
void set(array<int>^ value);
}
member RowsAffected : int[] with get, set
Public Property RowsAffected As Integer()
Property Value
Type: System.Int32[]
Remarks
This information is captured only for the SQL Server client.
See Also
SqlExecutionResult Class
Microsoft.Data.Tools.Schema.Sql.UnitTesting Namespace
Return to top