User Aaron Fischer - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T22:27:18Zhttp://stackoverflow.com/feeds/user/5618http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810884/how-to-mimick-medium-trust/1813309#18133090Answer by Aaron Fischer for How to mimick medium trust?Aaron Fischer2009-11-28T18:32:46Z2009-11-28T18:32:46Z<p>You can set this in your web.config see <a href="http://msdn.microsoft.com/en-us/library/tkscy493.aspx" rel="nofollow">msdn</a> and <a href="http://blogs.runatserver.com/ppare/archive/2009/04/15/defining-a-trust-level-for-your-web-application.aspx" rel="nofollow">Defining a Trust Level for your web application</a></p>
http://stackoverflow.com/questions/1809892/databinding-in-mfc0Databinding in MFCAaron Fischer2009-11-27T17:34:23Z2009-11-27T23:45:09Z
<p>I have an application that is in mfc with a very rich domain object, but I am not sure how to setup the databinding with the cformview. How do you deal with databinding? Are you ussing the DDX and DDV or do you have a better trick?</p>
http://stackoverflow.com/questions/111196/local-database-with-silverlight6Local Database with SilverlightAaron Fischer2008-09-21T15:12:59Z2009-11-27T06:36:49Z
<p>What would be a good local database for a Silverlight application? The database's main purpose is for local data caching and synchronization services. I do not believe that SQL anywhere or SQLite will work since they use unmanaged code which will not run under the silverlight sandbox</p>
http://stackoverflow.com/questions/187888/control-visual-studio-plugins-from-the-command-line0Control Visual Studio plugins from the command lineAaron Fischer2008-10-09T15:44:38Z2009-11-20T17:27:15Z
<p>Is there a way to control the addins Visual Studio 2008 loads via the command line?
I am looking for a way to load my DevExpress plug in when I am working with VB or C# and alternatively load Visual Assist X when I am working on a c++ project.</p>
http://stackoverflow.com/questions/59893/best-method-to-obfuscate-or-secure-net-assemblies/60054#600540Answer by Aaron Fischer for Best method to obfuscate or secure .Net assembliesAaron Fischer2008-09-12T21:56:48Z2009-11-20T14:44:32Z<p>This is a pretty good list of obfuscators from <a href="http://msdn.microsoft.com/en-us/vcsharp/aa336818.aspx#obfuscators" rel="nofollow">msdn</a>
Obfuscators</p>
<ul>
<li><a href="http://www.smartassembly.com" rel="nofollow">Smartassembly</a></li>
<li><a href="http://www.preemptive.com/" rel="nofollow">Dotfuscator</a> .NET Obfuscator</li>
<li><a href="http://www.remotesoft.com/salamander/obfuscator.html" rel="nofollow">Salamander</a> .NET Obfuscator</li>
<li><a href="http://www.semdesigns.com/products/obfuscators/csharpobfuscator.html" rel="nofollow">Semantic Designs</a>: C# Source Code Obfuscator</li>
<li><a href="http://www.9rays.net/Products/Spices.Net/" rel="nofollow">Spices.Net</a></li>
<li><a href="https://thinstall.com/help/index.php?%5Fnetsupport.htm" rel="nofollow">Thinstall</a></li>
<li><a href="http://www.wiseowl.com/products/products.aspx" rel="nofollow">Demeanor</a> for .NET</li>
<li><a href="http://www.xenocode.com/Products/Postbuild/" rel="nofollow">Xenocode</a> Postbuild 2006</li>
<li><a href="http://www.eziriz.com/" rel="nofollow">.NET Reactor</a></li>
<li><a href="http://www.ssware.com/cryptoobfuscator/obfuscator-net.htm" rel="nofollow">Crypto Obfuscator</a></li>
</ul>
<p>I have not observed any performance issues when obfuscating my code. If your just sending text basted stack traces you might have a problem translating the method names.</p>
http://stackoverflow.com/questions/234526/can-i-setup-an-iis-mime-type-in-net3Can I setup an IIS MIME type in .NET?Aaron Fischer2008-10-24T17:35:57Z2009-11-19T23:18:24Z
<p>Can I setup a custom MIME type through ASP.NET or some .NET code? I need to register the Silverlight XAML and XAP MIME types in IIS 6.</p>
http://stackoverflow.com/questions/1749978/how-can-a-base-class-reference-a-supertype-and-still-compile0How can a base class reference a supertype and still compile?Aaron Fischer2009-11-17T16:17:30Z2009-11-18T02:20:55Z
<p>how does this class compile?</p>
<pre><code>public class ReflectionHelper
{
public static IReflectionHelper CreateHelper( object subject )
{
return ( IReflectionHelper )Activator.CreateInstance( typeof( ReflectionHelper<> ).MakeGenericType( GetFirstGenericArgument( subject ) ) );
}
public static Type GetFirstGenericArgument( object subject )
{
return subject.GetType().GetGenericArguments()[ 0 ];
}
}
public class ReflectionHelper<T> : ReflectionHelper, IReflectionHelper where T : new()
{}
</code></pre>
<p>Notice ReflectionHelper<code><T></code> inherits from ReflectionHelper which has a referance to the type of ReflectionHelper<>
For some reason I was expecting a circular reference compile error.</p>
http://stackoverflow.com/questions/1749922/how-can-i-coax-an-object-to-a-ilistt0How can I coax an object to a IList<T>?Aaron Fischer2009-11-17T16:09:37Z2009-11-17T16:45:45Z
<p>I am using reflection along with linq.Dynamic, and I am having a small problem with creating a query that needs to get <code>IQueryable<T></code> from an <code>IList<T></code> or <code>ISet<T></code> when I currently have an object. </p>
<p>At first I thought I could write a little helper method:</p>
<pre><code>object Helper<T>( IList<T> list, string query, param object[] values )
{
... do query and return result.
}
</code></pre>
<p>Unfortunately the compiler needs to infer the T argument which it cannot do when passed an object.<br>
Is there a simple way to get around this? I am trying to avoid dynamically invoking this helper function as well.</p>
<p>EDIT:
I have a Domain object that currently as several IList collections I am trying to query against this class to find the proper object to display on the screen.
Basically I have a screen guid 10 and a xpathish string "FruitBasket/Fruit[Ripe == true]/color"
So I know Fruit is an IList in my reflection code I inspect the property to find out if it implements IList now I am at the point where i need to query this collection to pick out the Fruit.Ripe == true objects. For this I need a cast to IQuerable</p>
http://stackoverflow.com/questions/989191/assembly-load-error0assembly load errorAaron Fischer2009-06-12T21:40:30Z2009-11-14T22:00:02Z
<p>I receive</p>
<blockquote>
<p>Could not load file or assembly
'DeployLX.Licensing.v3,
Version=3.1.2000.0, Culture=neutral,
PublicKeyToken=798276055709c98a' or
one of its dependencies. One or more
arguments are invalid (Exception from
HRESULT: 0x80000003) InnerException:
System.Runtime.InteropServices.COMException</p>
</blockquote>
<p>On some copiers of windows vista 32bit. The file is there it seems like the copy of vista is missing a native dependency. Any ideas how to find a managed assemblies native dependencies?</p>
http://stackoverflow.com/questions/1734253/which-is-the-best-for-a-3-tier-architecture-linq-to-sql-or-nhibernate/1734921#17349211Answer by Aaron Fischer for Which is the best for a 3-tier architecture; Linq to SQL or Nhibernate?Aaron Fischer2009-11-14T17:24:04Z2009-11-14T17:24:04Z<p>what is the best solution for 3tier, I would say neither. There is no cookie cutter response every framework/library you choose will have trade-offs. To make this ORM decision you need to look at your business needs and determine which of the many possibilities will best help you achieve our goals in a timely and maintainable way. How complex is your domain model and can linq to sql adequately describe them.</p>
http://stackoverflow.com/questions/1733521/should-i-use-nhibernate-for-a-fairly-small-project/1734886#17348864Answer by Aaron Fischer for Should i use nhibernate for a fairly small project?Aaron Fischer2009-11-14T17:12:43Z2009-11-14T17:12:43Z<p>nhibernate is a very flexible system and can be used with simple databases or more complex ones. The real question comes down to what your project is rather then if its big or small and how much time you want to spend setting up a good design. If your site is just pulling a table out of database listing it on the webpage for viewing and editing. nhibernate is over kill, you simply have no need for the business objects it will create. On the other hand if business/domain objects are the center point of your project then you can benefit from use of nhibernate.</p>
http://stackoverflow.com/questions/1731189/wcf-problem-sending-object-to-client/1734787#17347871Answer by Aaron Fischer for WCF Problem Sending Object To ClientAaron Fischer2009-11-14T16:46:50Z2009-11-14T16:46:50Z<p>Take a look at this <a href="http://davybrion.com/blog/2009/11/requestresponse-service-layer-exposing-the-service-layer-through-wcf/" rel="nofollow">ServiceKnownType</a> provider It should save you some grief. Its very simple for you to register a base type and it will scan the assembly for all classes that inherit from the base class.</p>
http://stackoverflow.com/questions/1731572/error-using-wcf-and-datacontractserializer/1734769#17347690Answer by Aaron Fischer for Error using WCF and DataContractSerializerAaron Fischer2009-11-14T16:40:07Z2009-11-14T16:40:07Z<p>You might see this if your setter is protected or privet. If it's not marked public the serializer will not be able to set it. How do you have your Aggregates collection exposed?</p>
http://stackoverflow.com/questions/1708724/how-do-i-copy-an-existing-nhibernate-object-as-a-new-object0How Do I copy an existing nhibernate object as a new object?Aaron Fischer2009-11-10T15:17:28Z2009-11-10T20:21:52Z
<p>I a persisted NHibernate object that I would like to repersist as a new entity. How do I get NHibernate to save this object as if it was a new?</p>
<p>I am thinking I might create a session interceptor to force every entity to look new and ensure the id is left blank like a new unpresisted entity would.</p>
http://stackoverflow.com/questions/1702769/is-there-a-library-to-get-set-property-from-a-string-xpath-or-property-path0 Is there a library to get/set property from a string (xpath or Property Path)Aaron Fischer2009-11-09T18:19:32Z2009-11-09T18:19:32Z
<p>I am looking for a way to use a string instance path or xpath expression to get/set property values very similar to what wpf does with it's data binding. Do you know of a library for this? I found ObjectXpathNavigator but I am not sure if there is something a little more active out there.</p>
<p>Get("Person.FirstName");
Set( "Person/LastName", value);</p>
http://stackoverflow.com/questions/1700400/wcf-fluentnhibernate-session-managment-and-cache/1702158#17021581Answer by Aaron Fischer for WCF FluentNhibernate Session managment and cacheAaron Fischer2009-11-09T16:32:29Z2009-11-09T16:32:29Z<p>Typically you would use a session per call with wcf. When you receive your entity back from the client you should be able to call Session.Merge( entity) and do the work you need.</p>
http://stackoverflow.com/questions/1698275/wcf-channelfactory-vs-generating-proxy/1698641#16986410Answer by Aaron Fischer for WCF ChannelFactory vs generating proxyAaron Fischer2009-11-09T01:19:29Z2009-11-09T01:19:29Z<p>The proxy will build async functions for which is kind of nice.</p>
http://stackoverflow.com/questions/1280462/what-mvvm-framework-are-you-using12What MVVM framework are you using?Aaron Fischer2009-08-14T22:15:08Z2009-11-07T03:48:49Z
<p>I am looking to write a WPF app and am trying to pick a MVVM framework to handle some of the complexity. What would you recommend and where can I find a good tutorial/getting started guide for said framework?</p>
http://stackoverflow.com/questions/1676873/resolving-a-generic-with-a-generic-parameter-in-castle-windsor0Resolving a Generic with a Generic parameter in Castle WindsorAaron Fischer2009-11-04T21:47:09Z2009-11-05T00:42:06Z
<p>I am trying to register a type like IRequestHandler<code>1[GenericTestRequest</code>1[T]] which will be implemented by GenericTestRequestHandler`1[T] but I am currently getting an error from Windsor "Castle.MicroKernel.ComponentNotFoundException : No component for supporting the service " Is this type of operation supported? Or is it to far removed from the suppored register( Component.For(typeof( IList<>).ImplementedBy( typeof( List<> ) ) )</p>
<p>below is an example of a breaking test.
//////////////////////////////////////////////////////</p>
<pre><code>public interface IRequestHandler{}
public interface IRequestHandler<TRequest> : IRequestHandler where TRequest : Request{}
public class GenericTestRequest<T> : Request{}
public class GenericTestRequestHandler<T> : RequestHandler<GenericTestRequest<T>>{}
[TestFixture]
public class ComponentRegistrationTests{
[Test]
public void DoNotAutoRegisterGenericRequestHandler(){
var IOC = new Castle.Windsor.WindsorContainer();
var type = typeof( IRequestHandler<> ).MakeGenericType( typeof( GenericTestRequest<> ) );
IOC.Register( Component.For( type ).ImplementedBy( typeof( GenericTestRequestHandler<> ) ) );
var requestHandler = IoC.Container.Resolve( typeof(IRequestHandler<GenericTestRequest<String>>));
Assert.IsInstanceOf <IRequestHandler<GenericTestRequest<String>>>( requestHandler );
Assert.IsNotNull( requestHandler );
}
}
</code></pre>
http://stackoverflow.com/questions/1672434/is-there-a-way-to-define-reusable-properties-to-n-hibernate-mappings/1674115#16741150Answer by Aaron Fischer for Is there a way to define reusable properties to n-hibernate mappings?Aaron Fischer2009-11-04T14:32:59Z2009-11-04T14:32:59Z<p>You might take a look at <a href="http://wiki.fluentnhibernate.org/Main%5FPage" rel="nofollow">fluentNHibernate</a>, It will simplify the mapping work for you. With With auto mapping you may only need an abstract base class to define these properties. </p>
http://stackoverflow.com/questions/1663163/nhibernate-why-is-connection-needed-to-build-factory-if-connection-can-be-passe/1665047#16650470Answer by Aaron Fischer for NHibernate - Why is connection needed to build factory if connection can be passed to session constructor?Aaron Fischer2009-11-03T03:20:02Z2009-11-03T03:20:02Z<p>If you look at the <a href="http://nhforge.org/doc/nh/en/index.html#session-configuration" rel="nofollow">documentation</a> you should be able to see how to create the session factory programaticaly. Alternatively you could use fluentNhibernate to avoid that configuration file.</p>
http://stackoverflow.com/questions/1659252/how-to-market-web-based-application/1659269#16592691Answer by Aaron Fischer for How to market web-based applicationAaron Fischer2009-11-02T03:08:25Z2009-11-02T03:08:25Z<p>You should probably ask a question like this at the <a href="http://discuss.joelonsoftware.com/?biz" rel="nofollow">business of software message board</a>.</p>
http://stackoverflow.com/questions/1643209/how-to-use-nhibernate-currentsessioncontext-within-a-timer/1650231#16502310Answer by Aaron Fischer for How to use NHibernate CurrentSessionContext within a TimerAaron Fischer2009-10-30T14:44:49Z2009-10-30T14:44:49Z<p>A session should be tied to a unit of work. It sounds like you just need a new session on every call back. Sessions are very light weight to create. </p>
http://stackoverflow.com/questions/1599673/ria-services-does-not-support-entities-that-are-decorated-by-nhibernate-mapping-a/1647896#16478960Answer by Aaron Fischer for RIA Services does not support entities that are decorated by NHibernate mapping attributes?Aaron Fischer2009-10-30T03:35:25Z2009-10-30T03:35:25Z<p>You can add preprocessor directives to your entities so that when compiled for silverlight the attributes are missing.</p>
<pre><code>#if SILVERLIGHT
//nothing
#else
[class]
#endif
public class entity{
}
</code></pre>
http://stackoverflow.com/questions/1616914/using-moq-to-verify-that-a-method-was-called/1643966#16439661Answer by Aaron Fischer for Using Moq to verify that a method was calledAaron Fischer2009-10-29T14:03:22Z2009-10-29T14:03:22Z<p>Do you need to test that add was called or that the list now has the expected number of items?</p>
<pre><code>Assert.True(store.Products.Count == 1);
</code></pre>
http://stackoverflow.com/questions/1643287/nhibernate-is-there-a-way-to-mark-an-object-as-not-dirty/1643861#16438611Answer by Aaron Fischer for NHibernate: is there a way to mark an object as NOT dirty?Aaron Fischer2009-10-29T13:46:08Z2009-10-29T13:46:08Z<p>Can you just remove the property you use to store this manually fetched data from NHibernates tracking?</p>
http://stackoverflow.com/questions/1607453/what-are-the-problems-associated-with-sending-a-hibernate-proxy-class-to-clients0What are the problems associated with sending a Hibernate Proxy class to clients. Aaron Fischer2009-10-22T14:03:36Z2009-10-22T14:44:33Z
<p>I have a POCO classes that I am using with NHibernate in a WCF service layer. And I am thinking about trying to send the NHibernate proxy classes down to a client. This is a client that I control. We handle record updates with a system wide reservation so there can only be one writable copy of this entity sent to a client at any given time. My basic goal is to take advantage of NHibernates change tracking so I don't need to fetch a copy from the database and replay the changes the client made to update the db.</p>
<p>Assuming I could get this to work what are the cons of this approch?</p>
http://stackoverflow.com/questions/1595137/fluentnhibernate-automappings-producing-incorrect-one-to-many-column-key/1597872#15978720Answer by Aaron Fischer for FluentNHibernate - AutoMappings producing incorrect one-to-many column keyAaron Fischer2009-10-20T23:24:55Z2009-10-20T23:24:55Z<p>Have you stepped through the auto map in the debugger to make sure your convention is being called?<br />
Assuming you have it wired up correctly you may need to implement the Accept interface for ReferenceConvention</p>
http://stackoverflow.com/questions/1416918/how-to-handle-a-reference-class-with-a-unique-field-in-nhibernate0How to Handle a reference class with a unique field in NHibernateAaron Fischer2009-09-13T05:18:52Z2009-10-20T18:06:48Z
<p>I am using NHibernate and need to update/add an entity class(a) that can reference another entity class(b) that needs to have a unique "name" field.<br />
So would it be best to: </p>
<ul>
<li>query with NHibernate to find an existing entity(b) before the call to save entity(a). </li>
<li>create stored proc to handle this update/insert logic. </li>
<li>let table(b) unique constraint throw back an exception when NHibernates session.save is called?</li>
</ul>
http://stackoverflow.com/questions/1575454/nhibernate-inheritance-mapping/1576000#15760000Answer by Aaron Fischer for NHibernate Inheritance MappingAaron Fischer2009-10-16T01:16:27Z2009-10-16T01:16:27Z<p>You are looking for a table perclass you need to set a discriminator-value
<a href="https://www.hibernate.org/hib%5Fdocs/nhibernate/html/inheritance.html" rel="nofollow">NHDoc for inheritance</a></p>
http://stackoverflow.com/questions/1805159/first-windows-service-timer-seems-not-to-tick/1805399#1805399Comment by Aaron Fischer on First Windows Service - timer seems not to tickAaron Fischer2009-11-26T20:43:44Z2009-11-26T20:43:44ZKeep in mind that System.Threading.Timer and System.Timers.Timer run on separate threads and are not thread safe.http://stackoverflow.com/questions/1700400/wcf-fluentnhibernate-session-managment-and-cache/1702158#1702158Comment by Aaron Fischer on WCF FluentNhibernate Session managment and cacheAaron Fischer2009-11-26T20:36:51Z2009-11-26T20:36:51Zthe documentation is here <a href="http://nhforge.org/doc/nh/en/index.html#performance-cache" rel="nofollow">nhforge.org/doc/nh/…</a> also take a look at <a href="http://ayende.com/Blog" rel="nofollow">ayende.com/Blog</a> for lots of good info. And Davy has a quick start <a href="http://davybrion.com/blog/2009/02/quickly-setting-up-and-using-nhibernates-second-level-cache/" rel="nofollow">davybrion.com/blog/2009/…</a>http://stackoverflow.com/questions/1733521/should-i-use-nhibernate-for-a-fairly-small-project/1734886#1734886Comment by Aaron Fischer on Should i use nhibernate for a fairly small project?Aaron Fischer2009-11-14T17:28:07Z2009-11-14T17:28:07ZI don't disagree, but on the other hand there is YAGNI. Just depends on how well you predict the future. http://stackoverflow.com/questions/877171/is-there-a-way-to-get-a-property-value-of-an-object-using-propertypath-class/877600#877600Comment by Aaron Fischer on Is there a way to get a property value of an object using PropertyPath class?Aaron Fischer2009-11-11T18:27:10Z2009-11-11T18:27:10ZHow would you write back to that property?http://stackoverflow.com/questions/1700400/wcf-fluentnhibernate-session-managment-and-cache/1702158#1702158Comment by Aaron Fischer on WCF FluentNhibernate Session managment and cacheAaron Fischer2009-11-10T20:05:56Z2009-11-10T20:05:56ZYou can work with your second level cache that is per sessionFactory but a session should be tied to a short lived unit of work. In wcf the call would be your unit of work. You could close the session and store it somewhere for next time(reopen the session) but managing session life span between wcf calls will not be fun.http://stackoverflow.com/questions/1670717/should-nhibernate-assign-id-to-entities-or-should-it-be-handled-by-applicationComment by Aaron Fischer on Should NHibernate assign id to entities or should it be handled by application?Aaron Fischer2009-11-04T01:50:58Z2009-11-04T01:50:58ZHow is the entity invalid with out an id? And what are you trying to test?http://stackoverflow.com/questions/1627439/save-data-through-a-web-service-using-nhibernateComment by Aaron Fischer on Save data through a web service using NHibernate?Aaron Fischer2009-10-30T14:39:26Z2009-10-30T14:39:26ZWhat version of .net are your client and server? Are you ever going to need to communicate with a none .net client?(or how tightly coupled do you want to be?) http://stackoverflow.com/questions/1643209/how-to-use-nhibernate-currentsessioncontext-within-a-timerComment by Aaron Fischer on How to use NHibernate CurrentSessionContext within a TimerAaron Fischer2009-10-29T13:43:42Z2009-10-29T13:43:42ZWhy do you need to use the same session for more then one callback request?http://stackoverflow.com/questions/1624748/nhibernate-linq-how-can-i-use-iqueryable-list-after-session-close/1624824#1624824Comment by Aaron Fischer on Nhibernate-Linq: How can I use Iqueryable list after session close?Aaron Fischer2009-10-26T14:18:01Z2009-10-26T14:18:01ZYou either return ToList from your DataAccess layer. Or you don't close the session and transaction.http://stackoverflow.com/questions/1607453/what-are-the-problems-associated-with-sending-a-hibernate-proxy-class-to-clients/1607757#1607757Comment by Aaron Fischer on What are the problems associated with sending a Hibernate Proxy class to clients. Aaron Fischer2009-10-22T15:29:52Z2009-10-22T15:29:52ZI like the idea of a proxies using WCF, I kind of like the idea of having an ISession that would use wcf rather then a db for the client.http://stackoverflow.com/questions/1607453/what-are-the-problems-associated-with-sending-a-hibernate-proxy-class-to-clients/1607614#1607614Comment by Aaron Fischer on What are the problems associated with sending a Hibernate Proxy class to clients. Aaron Fischer2009-10-22T15:26:58Z2009-10-22T15:26:58ZThanks, these two apps are so tightly couples the domain objects would really be the same on the client and server.http://stackoverflow.com/questions/1587869/using-dynamic-proxy-on-nhibernate-objects/1588744#1588744Comment by Aaron Fischer on Using dynamic proxy on NHibernate objectsAaron Fischer2009-10-20T02:48:15Z2009-10-20T02:48:15Z+1 Auditing seems to be an added responsibility for the entity class.http://stackoverflow.com/questions/1575454/nhibernate-inheritance-mappingComment by Aaron Fischer on NHibernate Inheritance MappingAaron Fischer2009-10-16T17:42:30Z2009-10-16T17:42:30Zwhen would you use one class over the other?http://stackoverflow.com/questions/1567878/inheriting-from-sealed-classes/1567891#1567891Comment by Aaron Fischer on Inheriting From Sealed ClassesAaron Fischer2009-10-14T18:46:27Z2009-10-14T18:46:27ZMy understanding is that taking Person.PhoneNumber = "FOO" and throwing an exception is a better practice then Person.PhoneNumber = new PhoneNumber("FOO"); throwing an exception for a constructor. But this may just be my C++ background ringing bells.http://stackoverflow.com/questions/1560050/could-not-load-file-or-assembly-nhibernateComment by Aaron Fischer on Could not load file or assembly NHibernateAaron Fischer2009-10-14T00:14:50Z2009-10-14T00:14:50ZIs this an asp.net application?