Search Results

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
699 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
3answers
671 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 …
0
votes
2answers
42 views

Can I get a byte[] from a BitmapImage in Silverlight?

I'm trying to pass some representation of an image back and forth between Silverlight and a WCF service. If possible I'd like to pass a System.Windows.Media.Imaging.BitmapImage, since that would m …
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

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}); …
0
votes

Union on two big LINQ queries not supported. How do I get around it (if at all possible)

I would try combining the FullTextSearch and FullTextTagSearch functions into something like this: public IQueryable<Image> ImageSearch(string fullText) { return from imag …