jrista
|
Registered User
|
I am a C# Software Engineer and Architect, and have been developing on the .NET and Microsoft platform for most of my career. I am a huge fan of C#, I love DDD (Domain Driven Design), and am a fledgling advocate of BDD (Behavior Driven Development.) My favorite technical authors are Martin Fowler, Eric Evans, and Thomas Erl.
See my .NET Configuration articles on CodeProject: Unraveling the Mysteries of .NET 2.0 Configuration Decoding the Mysteries of .NET 2.0 Configuration Cracking the Mysteries of .NET 2.0 Configuration |
|
Dec 10 |
accepted | WCF - Configuring Client/server authentication in headers? |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 6 |
comment |
Shorten commands? If you are using Visual Studio, just over over the ExampleCommand2 part, and intellisense will tell you the type. |
|
Dec 6 |
accepted | How to use the Facade.Instance method without object construction? |
|
Dec 6 |
accepted | Shorten commands? |
|
Dec 6 |
answered | How to use the Facade.Instance method without object construction? |
|
Dec 6 |
answered | Shorten commands? |
|
Dec 5 |
comment |
How can I prevent CompileAssemblyFromSource from leaking memory? an override of InitializeLifetimeService such that it keeps the object alive long enough. If you want the object to persist forever, return null from InitializeLifetimeService. |
|
Dec 5 |
comment |
How can I prevent CompileAssemblyFromSource from leaking memory? Something to note about crossing domain boundaries. If you do not derive the marshalled type from MarshalByRefObject, then marshalling will use copy-by-value semantics. This can result in some very slow execution, as communication across the domain boundary will be very chatty. If you can't have your types deriving from MarshalByRefObject, you might want to create a generic proxy object that you instantiate in the secondary AppDomain that DOES derive from MarshalByRefObject, which mediates communication. If you do implement MarshalByRefObject, beware of object lifetime, and implement ... |
|
Dec 5 |
comment |
Load and execution sequence of a web page? Wow, excellent and thorough answer. This puppy definitely deserves to be accepted! |
|
Dec 5 |
comment |
Can I get a byte[] from a BitmapImage in Silverlight? Oh, apologies. I forgot that Silverlight and WPF are not quite equal yet. |
|
Dec 5 |
answered | Third party controls and scripts |
|
Dec 5 |
answered | Can I get a byte[] from a BitmapImage in Silverlight? |
|
Dec 5 |
answered | Can’t get Value from ComboBox |
|
Dec 2 |
comment |
Can the performance timer “% Time in GC” be wrong? Well, good to know its not an accumulated value, but the last measured value. That makes even more sense. Glad you got it figured. :) |
|
Dec 2 |
answered | Can the performance timer “% Time in GC” be wrong? |
|
Dec 1 |
comment |
What is the proper object relationship? (C#) It does not necessarily have to be L2S or EF either. I probably should have mentioned nHibernate, SubSonic, Telerik OpenAccess. There are other ORM options that generally do the same as L2S (or EF in the future), although not quite as simply and powerfully. An ORM takes care of mapping, separation of domain and persistence concerns, lazy loading (or explicit load on demand if you prefer), state tracking, and sql generation for both retrieval and updates. Memory is utilized efficiently without duplicating instances of objects. In the case of L2S and EF v4, efficiency of SQL is very high. |
|
Dec 1 |
comment |
What is the proper object relationship? (C#) @Jason D: L2S was only one of the options. The general gist of the post was to use an OR mapper, which absolutely solves the problem of the question posed, which was tracking object instances such that each customer object did not reference its own copy of the depot entity, using a shared instance. There are a variety of manual solutions to the problem, but they require CONSIDERABLE effort to implement and maintain. An ORM is the most cost effective answer that won't break single responsibility or separation of concerns. L2S and EF are readily available, free, and easy to use. |
|
Nov 27 |
comment |
WCF - Configuring Client/server authentication in headers? Glad you got it working. :) |
|
Nov 27 |
comment |
Would you hire a C++ programmer with 10 years experience for a C# role? @GMan: Heh, the term 'unsafe' has special meaning to C#. It is both a keyword (public unsafe void SomeFunction()), as well as a compilation switch. To use pointers in C#, you have to use "unsafe" code blocks and enable unsafe code compilation. In the CLR managed environment, since the GC can move chunks of memory around at will, use of pointers can indeed be unsafe if not managed properly. This is one of the distinctions between C++ and C# that can be critical when evaluating a C++ candidate for hire. |
|
Nov 27 |
comment |
LINQ vs datasets - performance hit? Given his question and two comments, the value 't' is an entity (and apparently a monstrous one...db-in-a-table), not a one or a zero. To get a one or a zero, you would need to 'select t.SomeIntegralValue' |
|
Nov 26 |
comment |
How to apply multiple effect on same element BitmapEffect being obsolete is news to me. They are not accelerated, and there may be permissions issues for partial-trust apps, but they are still a current and valid API. If you really don't want to use a bitmap effect, then you will probably need to write your own effect...I don't know if anything like an EffectGroup. |
|
Nov 26 |
accepted | LINQ vs datasets - performance hit? |
|
Nov 26 |
awarded | ● Nice Answer |
|
Nov 26 |
comment |
how to fetch data from nested Dictionary in c# Beat me to the punch. I tried to do it with dot-notation, but I couldn't figure out how to get 'inner' without switching to sugar-syntax. ;P +1, great answer! |
|
Nov 26 |
revised |
Would you hire a C++ programmer with 10 years experience for a C# role? added 139 characters in body |
|
Nov 26 |
revised |
how to fetch data from nested Dictionary in c# Improved post contents. |
|
Nov 26 |
comment |
.net project enhancement The demanding nature of this post is going to get it closed. I highly recommend you reword it and ASK something, rather than demand something. |
|
Nov 26 |
answered | Would you hire a C++ programmer with 10 years experience for a C# role? |
|
Nov 26 |
answered | How to apply multiple effect on same element |
|
Nov 26 |
comment |
WCF - Configuring Client/server authentication in headers? If you can find any way to capture and log the exception to your own file or database record some how, having that additional stack trace information will be a huge help in figuring out what the problem is now. You should be on the right track now, though, with wsHttpBinding. Security can sometimes be tedious initially, but once it is set up, you don't have to worry about it. |
|
Nov 26 |
comment |
LINQ vs datasets - performance hit? Ouch. Yeah, I would work on whittling down the entity to that it brings in only the fields you absolutely need. If its a gargantuan table like that, the bottleneck is transforming records to entities, and sticking each entity in the change tracker. |
|
Nov 26 |
comment |
Maintain the querystring in all pages in mvc If the user switches from Preview to Live mode, you would want to remove that "Preview" key from the session. |
|
Nov 26 |
answered | LINQ vs datasets - performance hit? |
|
Nov 26 |
answered | Recursive problem |
|
Nov 26 |
comment |
WCF - Configuring Client/server authentication in headers? If you are using https, did you configure transport security for the binding? Transport security means the transport protocol encrypts the channel. Since you are using https, you would need to enable transport security for the binding. Try configuring that and see if it works. You will probably need to be able to see the full exception report to get security working. It is usually a little bit of trial and error to get it up and running...its not really "difficult", just not "obvious" the first time you implement security for an endpoint. |
|
Nov 26 |
comment |
Centralised settings in C# for multiple programs @MPelletier: As far as centralized configuration goes, I think the registry is the best option. You could use a database, write your own configuration framework and store your configuration in a custom way, etc. etc. Thing is, the registry is ubiquitous in windows...its just there, and easily accessible. Hard to go wrong with it. I would recommend writing a wrapper around the registry access, in case you come up with a better solution in the future. Would be less impactful to your application that way. |
|
Nov 26 |
comment |
Centralised settings in C# for multiple programs Hate to give the registry another leg up, but this is probably the best answer. Trumped mine. ;) |
|
Nov 26 |
answered | WCF - Configuring Client/server authentication in headers? |
|
Nov 26 |
comment |
How to verify if the Web Service caller is my web site? I would avoid the use of SHA-1 as that is a hacked algorithm. Same goes for MD5. |
|
Nov 25 |
answered | What is the proper object relationship? (C#) |
|
Nov 24 |
accepted | How can I get the highest value from asp.net arraylist. |
|
Nov 24 |
answered | Using WF for Controller/Actions in ASP.NET MVC |
|
Nov 24 |
answered | How can I get the highest value from asp.net arraylist. |
|
Nov 18 |
comment |
Linq Query Returns Incorrect Result Set Could you please post your actual LINQ query? You said it was very complex. Given that everything else seems to be in order, the remaining option is that your LINQ query contains runtime-only processing that the translator could not turn into SQL. |
|
Nov 17 |
comment |
Detect if any key is pressed in C# (not A, B, but any) What is your application? Console? Windows Forms? WPF? Web site? |
|
Nov 17 |
revised |
Having trouble with XmlDocument C# deleted 67 characters in body |
|
Nov 17 |
comment |
Having trouble with XmlDocument C# @Abel: You are correct. I've updated the example to reflect. |
|
Nov 17 |
answered | Having trouble with XmlDocument C# |
|
Nov 17 |
answered | Benefits the Win32 API has over .NET |
