I just found out that Live Writer supports BlogEngine.NET. With this plus the cool extension Code Snippet I now don’t have to deal with formatting the code entries. I think they look better too. One of the things driving this all however is that the RSS feed doesn’t seem to like my old code formatting. Check out […]
Category Archives: Tech
WCF RIA Services, jQuery, and JSON endpoint – Part 2
In order to perform CUD operations with WCF RIA Services a changeset must be built. All of the operations use JSON/SubmitChanges. What is performed on the entity depends on the Operation enum. Lets look at the Insert first: function Insert() { var changeSet = []; var entityChange = {}; //Setting Id for entityChange, not the […]
WCF RIA Services, jQuery, and JSON endpoint – Part 1
Here I will show how to perform a simple load using jQuery and RIA Services. Pre-requisites: A working knowledge of WCF RIA Services and jQuery Know how to setup JSON endpoint Server Setup I start with the server because the namespace and class names affect the jQuery code. To keep things simple (and remove the need for a database […]