Search Results

1
vote
4answers
103 views

Selecting A Subset Of A List With A Particular Element First In The List

I have a list in C# of Vendors that all have a Name property. I want to allow a user to filter that list by searching for a Name. The filter string can be a partial or complete match. However, i …
1
vote
3answers
159 views

Is There Any Difference Between SqlConnection.CreateCommand and new SqlCommand?

In .Net, is there any functional difference between creating a new SqlCommand object and attaching a SqlConnection to it and calling CreateCommand on an existing SqlConnection object? …
3
votes
2answers
86 views

Object Databases and C#

I have an application where my domain model just works. It's all very clear, clean and maps to objects very well. My problem is that it does not map to a relational database very well. With that …
1
vote

DbLinq - Cache problem

I wrote some pretty similar code that seems to work fine. The only difference is that as Marc suggests, I'm passing in the connection string and calling ToList on the Where method. My Database is …
1
vote

Get Windows Service Description ASP .NET

I think this should work. EDIT: I should read questions closer. The code below gets the description for the first service in the array. using System; using System.Collectio …
0
votes

Is there anything wrong with using var to declare collections in LINQ queries?

I feel like explicit is always the way to go here if you are in fact getting back known types. The documentation …
0
votes

How do I create a new row in WPF DataGrid when it is bound to an XmlDataProvider?

Is the problem that the user can't add rows or is it that when the user does add a row, it's not saved to the backing XML store? I can easily add a datagrid with CanUserAddRows="True" to a WPF app …
1
vote

How do you Mock IUnityContainer?

Have you tried mocking UnityBaseContainer or UnityContainer instead of IUnityContainer, ala …
3
votes

Is it possible to constrain a generic parameter to be a subtype of the current object?

I think you may be able to do it by just specifying the type on the end. public void DoStuff<T>(T arg1) where T: YourType I am doing that currently in a solu …