User - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:13:34Z http://stackoverflow.com/feeds/user/32415 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/330927/using-ninject-in-a-plugin-like-architecture 3 Using Ninject in a plugin like architecture atpires 2008-12-01T13:59:40Z 2009-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#369801 0 Answer by atpires for Would you consider using an alternative to MS SQL Server Management Studio? atpires 2008-12-15T21:40:40Z 2008-12-15T21:40:40Z <p>My vote for Quest Toad</p> http://stackoverflow.com/questions/353621/increasing-asp-net-webform-performance/353954#353954 0 Answer by atpires for Increasing ASP.net WebForm Performance atpires 2008-12-09T19:37:13Z 2008-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#353031 0 Answer by atpires for LINQ across multiple databases atpires 2008-12-09T15:04:23Z 2008-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#336699 0 Answer by atpires for .NET equivalent of modern Java web architecture atpires 2008-12-03T10:02:54Z 2008-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#332009 1 Answer by atpires for Favorite option for source control under $70? atpires 2008-12-01T20:01:15Z 2008-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#331904 0 Answer by atpires for Best practices for storing uploaded files in filesystem atpires 2008-12-01T19:27:35Z 2008-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#331610 0 Answer by atpires for Using javascript to set value of hidden field then access value from serverside c# code atpires 2008-12-01T17:43:31Z 2008-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#323787 0 Answer by atpires for On K.I.S.S and paving cowpaths atpires 2008-11-27T13:35:39Z 2008-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#291578 2 Answer by atpires for To YUI or not to YUI? atpires 2008-11-14T21:59:23Z 2008-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-query 2 How do I do a dynamic Linq2SQL Query? atpires 2008-11-14T13:33:04Z 2008-11-14T19:40:22Z <p>I'm trying to build a method that will receive a Linq table, and should return a List&lt;> of values that will be a DropDownList Datasource.</p> <p>This is what I've got till now:</p> <pre><code>public static List&lt;Structs.NameValuePair&gt; GenDropDownItens&lt;T&gt;(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#284409 0 Answer by atpires for Invoking WCF Service through Javascript atpires 2008-11-12T16:02:10Z 2008-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#283962 2 Answer by atpires for Who actually uses DataGrid/GridView/FormVIew/etc in production apps? atpires 2008-11-12T13:44:06Z 2008-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#283921 1 Answer by atpires for Invoking WCF Service through Javascript atpires 2008-11-12T13:28:45Z 2008-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#283918 0 Answer by atpires for Is .NET a write once, run anywhere (WORA) platform like Java claims to be? atpires 2008-11-12T13:25:50Z 2008-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#250759 0 Answer by atpires for What would you choose for your data layer today, Linq or Subsonic? atpires 2008-10-30T16:07:03Z 2008-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#250215 0 Answer by atpires for SQL Server Management Studio 2008 Intellisense atpires 2008-10-30T13:43:54Z 2008-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#247240 0 Answer by atpires for Should I build my next web app in ASP.NET MVC? atpires 2008-10-29T15:26:35Z 2008-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#331904 Comment by on Best practices for storing uploaded files in filesystem 2008-12-03T15:51:10Z 2008-12-03T15:51:10Z Indeed talking about security. But a separated disc is the better solution imho. http://stackoverflow.com/questions/250127/sql-server-management-studio-2008-intellisense/250215#250215 Comment by on SQL Server Management Studio 2008 Intellisense 2008-11-12T16:14:12Z 2008-11-12T16:14:12Z Yeah the first versions was horrible, try it again, it's very stable now.