http://jzablocki.myopenid.com/
Name: http://jzablocki.myopenid.com/
Score: 65.12
Last Seen: 1022 days, 5 hours, 2 minutes ago
Member Since: 29 May, 2010
DotNetShoutout
atom rss
10
Shouts

An Unobtrusive IronPython ViewEngine for ASP.NET MVC

published 1021 days, 11 hours, 30 minutes ago posted by http://jzablocki.myopenid.com/http://jzablocki.myopenid.com/ 1023 days, 11 hours, 35 minutes ago
Saturday, August 07, 2010 2:32:10 PM GMT Thursday, August 05, 2010 2:27:46 PM GMT
ASP.NET MVC supports a variety of view engines. The default WebForms view engine mixes C# or VB.NET code blocks with standard HTML markup. In an effort to be more readable than WebForms, other view engines such as NVelocity, Brail and Razor have simplified syntaxes that are less intrusive to the HTML document. This article will introduce an experimental, but unobtrusive view engine that uses IronPython and eliminates virtually all templating code from the markup. (more)
category: Web Dev | clicked: 0 | comment | | source: www.codevoyeur.com
tags: IronPython, MVC
7
Shouts

Using PyMongo with IronPython

published 1082 days, 14 hours, 21 minutes ago posted by http://jzablocki.myopenid.com/http://jzablocki.myopenid.com/ 1085 days, 9 hours, 6 minutes ago
Monday, June 07, 2010 11:41:47 AM GMT Friday, June 04, 2010 4:56:35 PM GMT
While most .NET developers who want to work with MongoDB focus on C# with NoRM and MongoDB-CSharp, there’s an alternative - IronPython and PyMongo. This posting demonstrates how to use the official Python MongoDB driver with IronPython. (more)
category: Architecture | clicked: 16 | comment | | source: www.dllhell.net
tags: MongoDB
4
Shouts

A NoRM-MongoDB Repository Base Class

published 1088 days, 15 hours, 22 minutes ago posted by http://jzablocki.myopenid.com/http://jzablocki.myopenid.com/ 1091 days, 13 hours, 7 minutes ago
Tuesday, June 01, 2010 10:41:04 AM GMT Saturday, May 29, 2010 12:55:44 PM GMT
When working with data access frameworks that map .NET types to underlying persistence stores, generics can be used to provide very simple but powerful infrastructure. NHibernate, for example, makes it easy to create a base class that provides full CRUD support for any mapped type. By inheriting from this base class, a DAO or repository is able to query and modify its data source with no additional code. This article will introduce a similar pattern for working with NoRM and MongoDB. (more)
category: Architecture | clicked: 4 | 3 comments | | source: www.codevoyeur.com
tags: Generics, Mongo, NoSQL