diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-18 14:43:31 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-18 21:31:28 +1000 |
commit | a6091afa5bd24fe65e7fc20f179ed888301afdf8 (patch) | |
tree | 020cf8336d4f282bac818d2d7a5d2a6b0ae10ff0 /src/test/Example.Extension/ExampleTableDefinitions.cs | |
parent | c7f9ef7e7bcceb670b56a70fc9aa92152fd55573 (diff) | |
download | wix-a6091afa5bd24fe65e7fc20f179ed888301afdf8.tar.gz wix-a6091afa5bd24fe65e7fc20f179ed888301afdf8.tar.bz2 wix-a6091afa5bd24fe65e7fc20f179ed888301afdf8.zip |
Test ability for an extension to have a custom strongly typed row during binding.
Diffstat (limited to 'src/test/Example.Extension/ExampleTableDefinitions.cs')
-rw-r--r-- | src/test/Example.Extension/ExampleTableDefinitions.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/Example.Extension/ExampleTableDefinitions.cs b/src/test/Example.Extension/ExampleTableDefinitions.cs index f204e5b6..4901cc09 100644 --- a/src/test/Example.Extension/ExampleTableDefinitions.cs +++ b/src/test/Example.Extension/ExampleTableDefinitions.cs | |||
@@ -14,6 +14,7 @@ namespace Example.Extension | |||
14 | new ColumnDefinition("Example", ColumnType.String, 72, true, false, ColumnCategory.Identifier), | 14 | new ColumnDefinition("Example", ColumnType.String, 72, true, false, ColumnCategory.Identifier), |
15 | new ColumnDefinition("Value", ColumnType.String, 0, false, false, ColumnCategory.Formatted), | 15 | new ColumnDefinition("Value", ColumnType.String, 0, false, false, ColumnCategory.Formatted), |
16 | }, | 16 | }, |
17 | strongRowType: typeof(ExampleRow), | ||
17 | tupleIdIsPrimaryKey: true | 18 | tupleIdIsPrimaryKey: true |
18 | ); | 19 | ); |
19 | 20 | ||