Latest Open Source stories

Fluent NHibernate Solution to enable SchemaExport to create HiLo colum(anthonydewhirst.blogspot.com)

submitted by FlukeFanFlukeFan(280) 6 days ago

I spent a few hours recently trying to figure out why Fluent NHibernate (FNH) wasn’t doing what I thought it should be doing when using the HiLo generator conventions and then using the SchemaExport tool to generate my schema. After eventually looking at the hbm files that FNH was producing for a possible error and to make sure that I was using FNH correctly, I realised that FNH wasn't the problem, and that the problem lies within SchemaExport. I have created a solution ... for FNH shown below. read more...

add a comment |category: |Views: 3

tags: another

A strange bug in NHibernate 2.1 - 3.2.0(www.codewrecks.com)

submitted by lukianlukian(5) 26 days, 15 hours ago

In a previous post I described a technique to insert query hints into NHibernate query with the use of comments. Testing this code in a real project lead to a strange exception when I issue queries with ICriteria. Error message: "The query should start with ‘SELECT’ or ‘SELECT DISTINCT’" This happens because ICriteria queries inserts comments inside the query and if you enable comments to flow into the query with the setting use_sql_comments something weird happens when you use SetMaxResults to issue a paginated query. If you look into the NHibernate code that is throwing the exception you find this function in the Sql Dialect read more...

add a comment |category: |Views: 6

tags: another

In .NET, open source does not beget open source(bvanderveen.com)

submitted by alexandrul.ctalexandrul.ct(475) 1 month, 1 day ago

Ruby, Python, Perl, Node, and Clojure all have, to varying degrees, a unified story for defining a project, translating its source code into runnable code, running a test suite, building distributable packages, and resolving and installing a project or package’s dependencies. These stories just work across all supported platforms. Setting up a cross-platform open source .NET project is non-trivial. ... read more...

1 comment |category: |Views: 162

tags: another

If You Can’t Beat ‘Em, Join ‘Em: Microsoft and Open Source(servicesangle.com)

submitted by pwhe23pwhe23(845) 1 month, 27 days ago

It's in Microsoft's best interest to see next generation technologies like Node.js and Hadoop run on its platforms. Although its .NET languages have large, dedicated developer communities, Microsoft has seen the writing on the wall. Open source programming languages from Java to PHP to Ruby to Scala are becoming the norm. JavaScript in particular is quickly becoming ubiquitous... read more...

1 comment |category: |Views: 144

tags: another

Nocco: Generating documentation for your project using code comments(dontangg.github.com)

submitted by dpetersondpeterson(3464) 1 month, 27 days ago

Check out the Nocco project, a .Net port of the Docco tool for generating project documentation in HTML format based off code comments in Markdown. Now you can comment your code and generate your documentation at the same time. The Github page includes an example of the documented code that is output by the tool, on its own source code. read more...

add a comment |category: |Views: 152

tags: another

Cleaning Up Your Git Repository For NuGet 1.6(coderjournal.com)

submitted by zigamorphzigamorph(3314) 1 month, 29 days ago

Provides an article detailing how to clean up the packages directory to get your project and repository ready for NuGet 1.6. read more...

1 comment |category: |Views: 33

tags: another

Declarative Threading: You're the Boss Now(www.codeproject.com)

submitted by dpetersondpeterson(3464) 2 months, 19 days ago

Codeproject author "gossd" shares with us a new library which supports declarative threading. This new approach allows you to decorate your class and functions with attributes determining on what thread the functions may be called. The class takes care of all marshaling and spins off its own thread, meaning no one has to concern themselves with invoking the call on the right thread. read more...

add a comment |category: |Views: 54

tags: another

Doing the Time Warp with .Net, Daylight Savings, and Noda Time(geekswithblogs.net)

submitted by dpetersondpeterson(3464) 2 months, 24 days ago

Daylight Savings time and wreak havoc on business systems. Converting between local and UTC time can result in local times that never actually exist due to DST changeover. Jesse Taber shares with us a solution: using the C# port of the Joda time library, Noda Time. read more...

add a comment |category: |Views: 16

tags: another

Open Source ASP.NET Ajax Polls (for Umbraco and any ASP.NET 4.0 Web Ap(blog.kaide.net)

submitted by IndraKurniawanIndraKurniawan(46) 2 months, 28 days ago

MAP Teams has just released open source Polls Widget for Umbraco 4.7 and any ASP.NET 4.0 Web Application Site. The new things: 1. Mustache/Nustache Templating engine for the server side and client side. 2. Umbraco package automation using Ruby Rake. read more...

add a comment |category: |Views: 14

tags: another

Bonobo Git Server for Windows – New Version Released(www.chodounsky.net)

submitted by jakubgarfieldjakubgarfield(60) 4 months, 3 days ago

Today has been released new version 1.1.0.0 of Bonobo Git Server for Windows. This version contains some new nice features that should make your git repository management more easier and fixes some essential bugs and errors. read more...

add a comment |category: |Views: 5

tags: another

Open Source CMS for WebMatrix - razorC.net(www.razorc.net)

submitted by nmgroup2011nmgroup2011(5) 4 months, 4 days ago

razorC.net - free CMS made with ASP.net web pages and WebMatrix read more...

add a comment |category: |Views: 2

tags: another

NHibernate Video Tutorial(www.d80.co.uk)

submitted by dan_swaindan_swain(190) 4 months, 6 days ago

A beginning Fluent NHibernate screencast. read more...

1 comment |category: |Views: 27

tags: another

Nancy v0.8 Released - Not your granddaddy's Sinatra(www.grumpydev.com)

submitted by dpetersondpeterson(3464) 4 months, 7 days ago

Nancy, the Sinatra-inspired web framework for ASP.NET has just released version 0.8 with loads of cool features. This latest release is the work of 19 contributors over 186 commits, and includes highly requested features such as basic authentication and CSRF protection. Check it out! read more...

add a comment |category: |Views: 42

tags: another

NHibernate Code-Based Mappings vs. FluentNHibernate(kazimanzurrashid.com)

submitted by dpetersondpeterson(3464) 4 months, 12 days ago

Kazi Manzur Rashid shows us some side-by-side comparisons between the new code-based mappings in NHibernate and FluentNHibernate. Code-based mappings are built in to the lastest release of NHibernate; FluentNHibernate is compatible with the latest release as well. read more...

1 comment |category: |Views: 118

tags: another

Automapper 2.0 released: Now with twice the mapping goodness(automapper.org)

submitted by dpetersondpeterson(3464) 4 months, 19 days ago

Automapper, your favorite object mapping framework, has just released version 2.0. Check it out today! read more...

1 comment |category: |Views: 41

tags: another

Why Do "Not Windows Store"?(rapidapplicationdevelopment.blogspot.com)

submitted by LearLear(1195) 4 months, 23 days ago

On Friday we released an open source alternative to the Windows Store for Windows 8 Apps called the "Not Windows Store". Why? Will people even want unverified apps? Aren't multiple app stores a detriment to end users? read more...

2 comments |category: |Views: 94

tags: another