Search Results

3
votes

data access layer - subsonic, C# 2.0

What are you planning to do with the Datasets that you cannot do with the ILists? IMHO, you'll want to be strongly typed as much as possible. On my team, we connect our middle tier to Obje …
0
votes

What is the correct way to deal with procedures that take a “long time” to complete?

You will want to take advantage of Threading. When the user signals to fetch the data, you can spawn a new thread to fetch the data while making a throbber visible on the main form. When the thread …
1
vote

How do I use .Net reflection to search for a property by name ignoring case?

Try adding the scope BindingFlags like so: var prop = Backend.GetType().GetProperty(fieldName, BindingFlags.Instance | BindingFlags.Public | BindingFlags.IgnoreCase); …