Tagged Questions
12
votes
2answers
1k views
yield return statement inside a using() { } block Disposes before executing
I've written my own custom data layer to persist to a specific file and I've abstracted it with a custom DataContext pattern.
This is all based on the .NET 2.0 Framework (given constraints for the ...
9
votes
2answers
273 views
Yield return inside usings
If I recall correctly that when I used yield inside using SqlConnection blocks I got runtime exceptions.
using (var connection = new SqlConnection(connectionString))
{
var command = new ...