I have a feature file with 3 scenarios for doing some BDD tests on a C# project. Each scenario is demonstrated using a large examples table (about 40 rows). Example tables a
You can use SpecFlow's "background" keyword.
Background:
Given my table looks like
| .... | .... |
Put this before your scenarios. You can then include the table as you would for any other Given, and it will be available for every scenario in the file.
No, SpecFlow does not support this.
See http://dannorth.net/2008/06/30/let-your-examples-flow/ for some clues as to why the feature is not implemented in BDD frameworks.