2
votes
8answers
230 views
Using unhandled exceptions instead of Contains()?
Imagine an object you are working with has a collection of other objects associated with it, for example the Controls collection on a WinForm. You want to check for a certain object in the collect …
4
votes
1answer
713 views
Calling Table-Valued SQL Functions From .NET
Scalar-valued functions can be called from .NET as follows:
SqlCommand cmd = new SqlCommand("testFunction", sqlConn); //testFunction is scalar
cmd.CommandType = CommandType.StoredPr …
3
votes
6answers
2k views
.Net - Returning DataTables in WCF
I have a WCF service from which I want to return a DataTable. I know that this is often a highly debated topic, as far as whether or not returning DataTables is a good practice. Let's put that as …
3
votes
3answers
679 views
.NET - Excel ListObject autosizing on databind
I'm developing an Excel 2007 add-in using Visual Studio Tools for Office (2008). I have one sheet with several ListObjects on it, which are being bound to datatables on startup. When they are bou …
1
vote
.NET - Excel ListObject autosizing on databind
If anyone else is having this problem, I have found the cause of this exception. ListObjects will automatically re-size on binding, as long as they do not affect any other objects on the sheet. K …
1
vote
.Net - Returning DataTables in WCF
For anyone having similar problems, I have solved my issue. It was several-fold.
As Darren suggested and Paul backed up, the Max..Size properties in the configuration needed to be en …
1
vote
What is the easiest and most compact way to create a IEnumerable<T> or ICollection<T>?
Assuming Foo expects an IEnumerable<T>, you can take advantage of type inference and do:
T o1, o2, o3;
Foo(new []{o1, o2, o3});
…
