DotNetShoutout - Stories tagged with Fluent NHibernate
2
Shouts

Mindscape NHibernate Designer 2 Released

posted by traskjdtraskjd 581 days, 22 hours, 59 minutes ago
Thursday, October 20, 2011 6:01:09 AM GMT
Mindscape have released the second major version of their Visual Studio 2010 integrated NHiberate model designer. Key new features include integrated visual schema migrations, fluent NHibernate code generation, improved configuration and getting started wizards, and many other smaller improvements to make NHibernate development easier. The designer is free for small models. (more)
category: Architecture | clicked: 19 | comment | | source: www.mindscapehq.com
tags: Visual Studio 2010, Fluent NHibernate, NHibernate, migrations, Mindscape
3
Shouts

Getting Started with NHibernate 3 and SQL Compact

published 667 days, 8 hours, 49 minutes ago posted by Matt_TCFMatt_TCF 669 days, 11 hours, 12 minutes ago
Tuesday, July 26, 2011 8:11:13 PM GMT Sunday, July 24, 2011 5:48:18 PM GMT
There are many posts on the web about how easy it is to get started with Microsoft’s Entity Framework and SQL Server Compact Edition (SQL CE). This combination seems to be all the rage thanks to EF’s new “Code First” approach introduced in version 4.1. While I am impressed with the latest version of Entity Framework, I still prefer NHibernate for a lot of reasons, and it’s actually just as easy (maybe even easier) to get up and running with NHibernate+SQL CE as Entity Framework+SQL CE. In this post, I... (more)
category: Data | clicked: 34 | comment | | source: trycatchfail.com
tags: SQL Server Compact, Fluent NHibernate, NHibernate
5
Shouts

Retrieve Data from your Database into .NET objects using NHibernate

published 1094 days, 16 hours, 17 minutes ago posted by swativswativ 1095 days, 15 hours, 59 minutes ago
Tuesday, May 25, 2010 12:43:13 PM GMT Monday, May 24, 2010 1:01:48 PM GMT
.NET developers will learn about the use and optimization of NHibernate. Users will be shown how to integrate their .NET projects to create a rich, efficient, object-oriented data access layer quickly and efficiently. For more information, please visit: NHibernate 2 Beginner's Guide (more)
category: Web Dev | clicked: 2 | comment | | source: www.packtpub.com
tags: .NET, Fluent NHibernate, NHibernate, Data Access, Database
4
Shouts

Setting up ASP.NET MVC with Fluent NHibernate and StructureMap | Kevin William Pang

published 1141 days, 15 hours, 8 minutes ago posted by http://kevinpang.myopenid.com/http://kevinpang.myopenid.com/ 1142 days, 12 hours, 21 minutes ago
Thursday, April 08, 2010 1:51:53 PM GMT Wednesday, April 07, 2010 4:39:18 PM GMT
On a yet-to-be-released side project of mine, I decided to use Fluent NHibernate, StructureMap, and ASP.NET MVC. It took me awhile to get everything to play together nicely, so I documented the steps I took in case anyone out there was interested in using in a similar setup. (more)
category: Web Dev | clicked: 17 | comment | | source: www.kevinwilliampang.com
tags: ASP.NET MVC, Fluent NHibernate, NHibernate, StructureMap
9
Shouts

Setting Up Fluent NHibernate for your project

published 1167 days, 15 hours, 43 minutes ago posted by derikwhittakerderikwhittaker 1169 days, 9 hours, 5 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Thursday, March 11, 2010 7:55:13 PM GMT
Taking a look at how to use setup and configure Fluent NHibernate for usage. We will focus on how to setup your database settings as well as how to get your Fluent NHibernate mappings registered into the system. (more)
category: Screencast | clicked: 6 | comment | | source: www.dimecasts.net
tags: Fluent NHibernate, DimeCasts.net
7
Shouts

Fluent NHibernate OR/M

published 1175 days, 14 hours, 26 minutes ago posted by robertschultzrobertschultz 1176 days, 5 hours, 44 minutes ago
Friday, March 05, 2010 2:33:53 PM GMT Thursday, March 04, 2010 11:16:38 PM GMT
I am currently working on a web application for a local contest, and am blogging my experiences being a new person to OR/M, DI and Testing frameworks. This is part one of my experience using Fluent NHibernate. (more)
category: Architecture | clicked: 5 | comment | | source: www.robertschultz.org
tags: C#, OR/M, Fluent NHibernate, NHibernate
9
Shouts

Mapping Relationships using Fluent nHibernate

published 1198 days, 18 hours, 31 minutes ago posted by KodefuGuruKodefuGuru 1200 days, 4 hours, 41 minutes ago
Wednesday, February 10, 2010 10:29:29 AM GMT Tuesday, February 09, 2010 12:19:43 AM GMT
In my last post I went over the basics of mapping properties on a POCO object to fields on a database table.   If you haven’t already check it out here.  In this post I’m going to focus on mapping relationships, that is, what if we wanted our objects to contain concrete references to the objects with which they have relationships, rather than just foreign key properties.One To One Relationships Take a look at the way we set up the File object in the previou... (more)
category: Agile | clicked: 2 | comment | | source: www.mattlong.com.au
tags: Fluent NHibernate, Mapping