User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T01:13:34Zhttp://stackoverflow.com/feeds/user/32415http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/330927/using-ninject-in-a-plugin-like-architecture3Using Ninject in a plugin like architectureatpires2008-12-01T13:59:40Z2009-11-14T05:27:57Z
<p>I'm learning DI, and made my first project recently.</p>
<p>In this project I've implement the repository pattern. I have the interfaces and the concrete implementations. I wonder if is possible to build the implementation of my interfaces as "plugins", dlls that my program will load dynamically.</p>
<p>So the program could be improved over time without having to rebuild it, you just place the dll on the "plugins" folder, change settings and voilá! </p>
<p>Is this possible? Can Ninject help with this?</p>
<p>Thanks for the help!</p>
http://stackoverflow.com/questions/364492/would-you-consider-using-an-alternative-to-ms-sql-server-management-studio/369801#3698010Answer by atpires for Would you consider using an alternative to MS SQL Server Management Studio?atpires2008-12-15T21:40:40Z2008-12-15T21:40:40Z<p>My vote for Quest Toad</p>
http://stackoverflow.com/questions/353621/increasing-asp-net-webform-performance/353954#3539540Answer by atpires for Increasing ASP.net WebForm Performanceatpires2008-12-09T19:37:13Z2008-12-09T19:37:13Z<p>1 - Turn on content compression on iis</p>
<p>2 - Cache everything you can</p>
<p>This will do for the majority of webapps out there.</p>
http://stackoverflow.com/questions/352949/linq-across-multiple-databases/353031#3530310Answer by atpires for LINQ across multiple databasesatpires2008-12-09T15:04:23Z2008-12-09T15:04:23Z<p>Create a proc/view in your database.</p>
http://stackoverflow.com/questions/336464/net-equivalent-of-modern-java-web-architecture/336699#3366990Answer by atpires for .NET equivalent of modern Java web architectureatpires2008-12-03T10:02:54Z2008-12-03T10:02:54Z<p>ASP.NET MVC + The data access that suits your job better.</p>
<p>There are many other frameworks, tools and libs that can help such as Castle ones, Ninject, Nunit, NLog etc.</p>
<p>But i believe that the better response to your question is "It depends".</p>
http://stackoverflow.com/questions/107385/favorite-option-for-source-control-under-70/332009#3320091Answer by atpires for Favorite option for source control under $70?atpires2008-12-01T20:01:15Z2008-12-01T20:01:15Z<p>Use the free subversion and spend $50 on <a href="http://www.visualsvn.com/visualsvn/" rel="nofollow">VisualSVN</a> for a perfect integration with Visual Studio. They even provide you a free version if you're working on a Open Source Project.</p>
http://stackoverflow.com/questions/331852/best-practices-for-storing-uploaded-files-in-filesystem/331904#3319040Answer by atpires for Best practices for storing uploaded files in filesystematpires2008-12-01T19:27:35Z2008-12-01T19:27:35Z<p>I suggest you to take then out of the web_app_root.</p>
<p>I like the way you're doing in the first example.</p>
http://stackoverflow.com/questions/331599/using-javascript-to-set-value-of-hidden-field-then-access-value-from-serverside-c/331610#3316100Answer by atpires for Using javascript to set value of hidden field then access value from serverside c# codeatpires2008-12-01T17:43:31Z2008-12-01T17:43:31Z<p>Are you submitting the form?</p>
http://stackoverflow.com/questions/323603/on-k-i-s-s-and-paving-cowpaths/323787#3237870Answer by atpires for On K.I.S.S and paving cowpathsatpires2008-11-27T13:35:39Z2008-11-27T13:35:39Z<p>Use a ORM, you will be changing the db soon...</p>
http://stackoverflow.com/questions/291534/to-yui-or-not-to-yui/291578#2915782Answer by atpires for To YUI or not to YUI?atpires2008-11-14T21:59:23Z2008-11-14T21:59:23Z<p>I've switched over Jquery recently, and the boost in productivity is noticiable. </p>
<p>YUI does have better docs, but it will break compatibility on 3.0.</p>
<p>Leave your legacy code on yui, and switch to jquery for new devs.</p>
http://stackoverflow.com/questions/290087/how-do-i-do-a-dynamic-linq2sql-query2How do I do a dynamic Linq2SQL Query?atpires2008-11-14T13:33:04Z2008-11-14T19:40:22Z
<p>I'm trying to build a method that will receive a Linq table, and should return a List<> of values that will be a DropDownList Datasource.</p>
<p>This is what I've got till now:</p>
<pre><code>public static List<Structs.NameValuePair> GenDropDownItens<T>(string ValueField , string TextField ) where T: class
</code></pre>
<p>What i don't know how to do is, query the table getting only the fields that are passed ( ValueField, TextField)...</p>
<p>Tks!</p>
http://stackoverflow.com/questions/283891/invoking-wcf-service-through-javascript/284409#2844090Answer by atpires for Invoking WCF Service through Javascriptatpires2008-11-12T16:02:10Z2008-11-12T16:02:10Z<p>Look at the code on the link that I have sent before. Sure U can implement it yourself but it well be a huge effort duplication.</p>
<p>First, your WCF service must have:</p>
<pre><code>[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
</code></pre>
<p>Then, on the javascript side, change the </p>
<pre><code>"Content-Type", "application/x-www-form-urlencoded"
</code></pre>
<p>To</p>
<pre><code>"Content-Type", "application/json"
</code></pre>
<p>Remember that the response will be json formated, so having a parser could be useful.</p>
<p>Why you don't want to use external libs?</p>
http://stackoverflow.com/questions/16963/who-actually-uses-datagrid-gridview-formview-etc-in-production-apps/283962#2839622Answer by atpires for Who actually uses DataGrid/GridView/FormVIew/etc in production apps?atpires2008-11-12T13:44:06Z2008-11-12T13:44:06Z<p>We use the Infragistics UltraWebGrid + LinqDataSource on our intranet apps.</p>
<p>It gives us ajax, sorting, filtering, paging all server side.</p>
<p>The "export to excel" also is a killer feature.</p>
<p>We have 5000+ users,lots of data, performance is excelent.</p>
http://stackoverflow.com/questions/283891/invoking-wcf-service-through-javascript/283921#2839211Answer by atpires for Invoking WCF Service through Javascriptatpires2008-11-12T13:28:45Z2008-11-12T13:28:45Z<p>By using XMLHTTP you ARE using ajax.</p>
<p>There's a full example here:</p>
<p><a href="http://www.west-wind.com/weblog/posts/324917.aspx" rel="nofollow">jQuery AJAX calls to a WCF REST Service</a></p>
http://stackoverflow.com/questions/84058/is-net-a-write-once-run-anywhere-wora-platform-like-java-claims-to-be/283918#2839180Answer by atpires for Is .NET a write once, run anywhere (WORA) platform like Java claims to be?atpires2008-11-12T13:25:50Z2008-11-12T13:25:50Z<p>But it IS multiplataform Win9x/WinNT/Mobile</p>
http://stackoverflow.com/questions/250369/what-would-you-choose-for-your-data-layer-today-linq-or-subsonic/250759#2507590Answer by atpires for What would you choose for your data layer today, Linq or Subsonic?atpires2008-10-30T16:07:03Z2008-10-30T16:07:03Z<p>I was in the same situation. LinQ is more "Visual", you do everything inside vstudio, and even Rob admits subsonic have a few things to match it.</p>
<p>IEnumerable, LINQDatasource ( with auto paging) and the visual modeling have convinced me to choose Linq over Subsonic.</p>
http://stackoverflow.com/questions/250127/sql-server-management-studio-2008-intellisense/250215#2502150Answer by atpires for SQL Server Management Studio 2008 Intellisenseatpires2008-10-30T13:43:54Z2008-10-30T13:43:54Z<p>Just use toad, waaaaay better than any Microsoft tool. There's a freeware version.</p>
<p><a href="http://www.toadsoft.com/" rel="nofollow">Toad Soft</a></p>
http://stackoverflow.com/questions/247115/should-i-build-my-next-web-app-in-asp-net-mvc/247240#2472400Answer by atpires for Should I build my next web app in ASP.NET MVC?atpires2008-10-29T15:26:35Z2008-10-29T15:26:35Z<p>If it's not mission critical and you and your team have the time to learn it, why not?</p>
http://stackoverflow.com/questions/331852/best-practices-for-storing-uploaded-files-in-filesystem/331904#331904Comment by on Best practices for storing uploaded files in filesystem2008-12-03T15:51:10Z2008-12-03T15:51:10ZIndeed talking about security. But a separated disc is the better solution imho.http://stackoverflow.com/questions/250127/sql-server-management-studio-2008-intellisense/250215#250215Comment by on SQL Server Management Studio 2008 Intellisense2008-11-12T16:14:12Z2008-11-12T16:14:12ZYeah the first versions was horrible, try it again, it's very stable now.