ienablemuch.com
class Programmer : IEnableMuch {: Pass array from jQuery to ASP.NET MVC controller
http://www.ienablemuch.com/2011/05/pass-array-from-jquery-to-aspnet-mvc.html
Class Programmer : IEnableMuch {. Simplicity can't be bought later, it must be earned from the start" - DB. I have the discipline. Tuesday, May 17, 2011. Pass array from jQuery to ASP.NET MVC controller. The View ( must pass traditional. Set to true) property to ajax parameter ):. HttpPost] public JsonResult Simple(Article a) { return Json(a); }. If need to return multi-dimensional array, pass it as JSON object:. Then on your controller:. Labels: ASP.NET MVC. November 15, 2012 at 2:22 PM. Really nice art...
ienablemuch.com
class Programmer : IEnableMuch {: WCF: "serviceActivations could not be found"
http://www.ienablemuch.com/2011/05/wcf-serviceactivations-could-not-be.html
Class Programmer : IEnableMuch {. Simplicity can't be bought later, it must be earned from the start" - DB. I have the discipline. Friday, May 27, 2011. WCF: "serviceActivations could not be found". If you received this kind of error:. The type 'WcfService1.Service1', provided as the Service attribute value in the ServiceHost directive, or provided in the configuration element system.serviceModel/serviceHostingEnvironment/serviceActivations could not be found. Select XML (Text) Editor. ServiceHost Langua...
ienablemuch.com
class Programmer : IEnableMuch {: Pass complex objects from jQuery to ASP.NET MVC controller method
http://www.ienablemuch.com/2011/05/pass-complex-objects-from-jquery-to.html
Class Programmer : IEnableMuch {. Simplicity can't be bought later, it must be earned from the start" - DB. I have the discipline. Tuesday, May 17, 2011. Pass complex objects from jQuery to ASP.NET MVC controller method. For some reason this doesn't work even when including traditional. Complex').click(function () { var y = []; for (i = 0; i. But this one works:. HttpPost] public JsonResult Complex(Rockband b) { return Json(b); }. Labels: ASP.NET MVC. June 27, 2011 at 4:15 PM. Many thanks for the tip!
ienablemuch.com
class Programmer : IEnableMuch {: Using checkbox list on ASP.NET MVC with Entity Framework 4.1 (telling the users about the third table is a leaky abstraction)
http://www.ienablemuch.com/2011/07/using-checkbox-list-on-aspnet-mvc-with_16.html
Class Programmer : IEnableMuch {. Simplicity can't be bought later, it must be earned from the start" - DB. I have the discipline. Saturday, July 16, 2011. Using checkbox list on ASP.NET MVC with Entity Framework 4.1 (telling the users about the third table is a leaky abstraction). UPDATE August 2, 2011. The code is now efficient, movie.Genres.Add can just receive an stub object. ID is input.TheMovie.MovieId : ); } catch (DbUpdateConcurrencyException) { ModelState.AddModelError(" , The record...Public cl...
ienablemuch.com
class Programmer : IEnableMuch {: Return results from anonymous code block on Postgresql
http://www.ienablemuch.com/2010/12/return-results-from-anonymous-code.html
Class Programmer : IEnableMuch {. Simplicity can't be bought later, it must be earned from the start" - DB. I have the discipline. Tuesday, December 7, 2010. Return results from anonymous code block on Postgresql. One of the nice things about MS Sql Server procedural language is that it doesn't support multiple languages, T-SQL only, and as such it can facilitate on-the-fly testing of code logic:. Declare @person id int; set @person id = 1; select * from person where person id = @person id;. ERROR: canno...
ienablemuch.com
class Programmer : IEnableMuch {: My thesis
http://www.ienablemuch.com/p/my-thesis.html
Class Programmer : IEnableMuch {. Simplicity can't be bought later, it must be earned from the start" - DB. I have the discipline. I have the discipline :-). Old school source code management :-). Given enough imagination, this code could be rewritten as virus. Mistaken for Love Bug virus, just ask AMA teachers(a bunch of clueless with programming languages, they are the only ones who thinks Love Bug virus could be patterned after this code) heheh. FileToBackup db DOS MAXPATHLEN dup(? Buffer db 1 dup(?
ienablemuch.com
class Programmer : IEnableMuch {: Benchmarking .NET JSON Serializers
http://www.ienablemuch.com/2014/10/benchmarking-net-json-serializers.html
Class Programmer : IEnableMuch {. Simplicity can't be bought later, it must be earned from the start" - DB. I have the discipline. Friday, October 17, 2014. Benchmarking .NET JSON Serializers. Null, "Type should not be null"); / HACK: The only way to detect anonymous types right now. return Attribute.IsDefined(type, typeof(System.Runtime.CompilerServices.CompilerGeneratedAttribute), false) & type.IsGenericType & type.Name.Contains("AnonymousType") & (type.Name.Star...NetJSON is the fastest. XML, XSLT,.
ienablemuch.com
class Programmer : IEnableMuch {: Musings on DI / IoC containers
http://www.ienablemuch.com/2014/09/musings-on-di-ioc-containers.html
Class Programmer : IEnableMuch {. Simplicity can't be bought later, it must be earned from the start" - DB. I have the discipline. Wednesday, September 24, 2014. Musings on DI / IoC containers. I stepped on the holy war of all holy wars, choice of DI. So I would hazard a guess, given that DI's functionality is straightforward, any amount of documentation on specific brand of DI would be good enough. Documentations on DIs are overrated, DI is like the notepad/mspaint of frameworks :-) They just have few f...
ienablemuch.com
class Programmer : IEnableMuch {: Minimalistic Architecture
http://www.ienablemuch.com/2014/11/minimalistic-architecture.html
Class Programmer : IEnableMuch {. Simplicity can't be bought later, it must be earned from the start" - DB. I have the discipline. Wednesday, November 5, 2014. Here's a recommended minimalistic. And minimum layers for a modern day line of business applications, especially the SPA. RichDomainModel - emphasis on rich. UnitTestFriendlyDal - Domain Access Layer, emphasis on unit-test friendly. Uses DTOs for data bag between UI and domain models. For wiring dependencies, LightInject. Uses static classes to en...
ienablemuch.com
class Programmer : IEnableMuch {: WCF + LightInject + NHibernate (part 2 of 2)
http://www.ienablemuch.com/2014/10/wcf-lightinject-nhibernate-part-2-of-2.html
Class Programmer : IEnableMuch {. Simplicity can't be bought later, it must be earned from the start" - DB. I have the discipline. Tuesday, October 28, 2014. WCF LightInject NHibernate (part 2 of 2). On the part 1. Of this post, I showed you how to integrate WCF and LightInject together. On this last part, I'll show you how to integrate NHibernate to them. This has 12 steps, let's begin. 1 To continue, let's add a DTO. Project using Class Library project, name it Dtos. Then add implementation for PersonC...
SOCIAL ENGAGEMENT