Chris Brandsma

3,223
Reputation
366 views

Registered User

Name Chris Brandsma
Member for 1 year
Seen Nov 26 at 0:12
Website
Location Boise, US
Age 34
Blogger at ElegantCode.com
Boise Software Developer Group President
Boise .Net Developer Group co-leader
Boise Code Camp co-leader
speaker
and married father of four.

My main technology interests are around C#, JQuery, Asp.Net, WPF, Silverlight, Best Practices, Design Patterns, and SOLID Principles.
Author of FluentAdo.net
Nov
26
awarded  Nice Answer
Nov
23
awarded  Popular Question
Oct
7
accepted Object Oriented Approach for C#
Sep
26
answered What is the best way of subscribing to events in ASP.NET?
Sep
26
revised jQuery ajax issue
Added quote; added 1 characters in body
Sep
26
answered What is in your JavaScript toolchain?
Sep
16
awarded  Yearling
Sep
9
awarded  Civic Duty
Sep
9
comment Object Oriented Approach for C#
You are looking for an ActiveRecord style pattern here. Traditionally that is bad design because you are mixing responsibilities in your objects. Single Responsibility is the key. An object either holds its data, or it know how to persist itself. Try not to mix the two. The end result is that you get code that is very hard to test, but also hard to modify -- there is too much stuff going on in the code.
Sep
9
answered Speeding up a Web Service
Sep
9
answered Object Oriented Approach for C#
Sep
8
accepted jQuery UI Datepicker on a qTip
Sep
4
comment Refactoring an If else tree
Absolutely yes. But something in the post'ers answers made me think this was part of a lot more code. So I left them in.
Sep
3
answered Refactoring an If else tree
Sep
2
answered Fill an array (or arraylist) from SqlDataReader
Aug
27
comment NHibernate and MySql is inserting and Selecting, not updating
Nope, but that is probably my next step. I do have ShowSql turned on, so I can see the sql being executed, and no update statement is being sent. Personally I think I have a SessionFactory issue.
Aug
26
asked NHibernate and MySql is inserting and Selecting, not updating
Aug
25
answered WinForms: NumericUpDown (.NET CF 3.5) and real numbers
Aug
24
answered .NET Compact Fw 3.5: Where is the numeric updown control?
Aug
24
answered Windows Mobile / .Net Compact Framework - How to bind generic lists to datagrid
Aug
20
accepted FlowLayoutPanel in CF.NET
Aug
19
answered MySQL & Hibernate. How fix the error: Column ‘ReservedWord’ does not belong to table ReservedWords?
Aug
19
accepted Can you learn from following mailing lists?
Aug
18
comment Enterprise Library Unity vs Other IoC Containers
Hi Nicholas: as for C# 3 support, everything that Autofac does already. :) For initialization, I want easy support for singletons/non singletons, and per-session initialization. Finally, I want easy ways to reference by custom name. (something that is a PITA in StructureMap). The final feature that I like more now than when I wrote this originally: AutoMocking. I don't use it all the time, but it is very nice to have arount.
Aug
16
comment C# and Access 2000
@Tony, typically the issue is when two people make changes to the same table at the same time. Network errors and excessive latency can also cause errors. If your users are using the database at different times, or modifying different tables in the database, you could be ok. In one case I worked on the same access database was used across branches that were 1000 miles apart. The Access corrupted weekly there. In case others are reading, here is a Microsoft article on how to avoid corruption issues: support.microsoft.com/kb/300216
Aug
15
comment C# and Access 2000
Congratulations. You are beating the odds.
Aug
14
revised C# and Access 2000
added 279 characters in body
Aug
14
answered .NET Assembly Diff / Compare Tool - What’s available?
Aug
14
answered jQuery Set Select Index
Aug
14
answered nhibernate and sessions, please clarify
Aug
14
answered FlowLayoutPanel in CF.NET
Aug
14
answered C# and Access 2000
Aug
14
answered ASP.NET Web.config question
Aug
14
answered Can you learn from following mailing lists?
Aug
6
comment What is the most efficient way to store large amounts of data in a table in c#
weblogs.asp.net/infinitiesloop/archive/… and msdn.microsoft.com/en-us/library/… are a good spot to start with.
Aug
6
answered What is the most efficient way to store large amounts of data in a table in c#
Aug
6
answered IoC/DI Container in a Windows Mobile Appication
Jul
29
answered Which collection(s) to store groups of users?
Jul
29
answered C# - DataGridView - have one column read from another database table?
Jul
28
answered Issues Installing Windows Mobile 6.0 and 6.5
Jul
28
answered WinForm custom controls: now or later?
Jul
28
awarded  Good Answer
Jul
28
awarded  Good Answer
Jul
27
comment Storing settings: XML vs. SQLite?
Persistence is an issue with the web and files. It is often easier to store the data in a database, then -- if you need to -- transform the results to xml. Databases make persistence easy (ok, easier).
Jul
27
answered Storing settings: XML vs. SQLite?
Jul
27
comment How can I execute an external function when an element is clicked?
@Shog9, thank you for expanding the example.
Jul
26
answered Create monochrome bitmap in Compact Framework
Jul
26
answered Windows mobile controlling scroll bar with finger
Jul
26
accepted How can I execute an external function when an element is clicked?
Jul
25
answered How can I execute an external function when an element is clicked?