DotNetShoutout - Stories tagged with NHibernate
4
shouts

Creating a common generic and extensible NHiberate Repository version 2

published 1 day, 10 hours, 6 minutes ago posted by http://dotnetchris.wordpress.com/http://dotnetchris.wordpress.com/ 2 days, 3 hours, 15 minutes ago
Wednesday, March 17, 2010 11:54:17 AM GMT Tuesday, March 16, 2010 6:45:47 PM GMT
An update to my previous post about creating a generic and extensible NHiberate Repository which supports Future queries and DetachedCriteria expressions (more)
category: Architecture | clicked: 24 | comment | | source: dotnetchris.wordpress.com
tags: Architecture, Generics, NHibernate, Patterns
5
shouts

Sb2 Developers Blog | FluentNHibernarte.Search 0.3 Beta Released Now Support Fluent XML-Less Configuration

posted by xoroxoro 9 days, 23 hours ago
Monday, March 08, 2010 11:00:55 PM GMT
Just released FluentNHibernate.Search 0.3 Beta which now support Fluent XML-Less Configuration available on CodePlex. No need to configure NHibernate.Search in web.config or app.config, you can know configure it like FluentNHibernate do for NHibernate. 1: Configuration nhcfg = FluentSearch.Configure() 2: .DefaultAnalyzer().Standard() 3: .DirectoryProvider().FSDirectory() 4: .IndexBase("~/Index") 5: .IndexingStrategy().Event() 6: .MappingClass (more)
category: Foundation | clicked: 2 | comment | | source: blog.sb2.fr
tags: Fluent Interface, Fluent Mapping, Lucene.NET, NHibernate
5
shouts

Sb2 Developers Blog | FluentNHibernarte.Search 0.2 Beta Released

published 10 days, 9 hours, 32 minutes ago posted by xoroxoro 11 days, 10 hours, 31 minutes ago
Monday, March 08, 2010 12:28:22 PM GMT Sunday, March 07, 2010 11:30:02 AM GMT
I’ve just released FluentNHibernate.Search 0.2 Beta which is available on CodePlex and support the following new features.   Field Mapping without specifying "Name" Actually we needed to specify Field name using .Field(“FieldName”) : 1:publicclass BookSearchMap : DocumentMap (more)
category: Foundation | clicked: 43 | comment | | source: blog.sb2.fr
tags: C#, Lucene.NET, NHibernate
4
shouts

Sb2 Developers Blog | Introducing FluentNhibernate.Search Mapping Interface

published 12 days, 5 hours, 57 minutes ago posted by xoroxoro 12 days, 23 hours, 11 minutes ago
Saturday, March 06, 2010 4:04:10 PM GMT Friday, March 05, 2010 10:49:30 PM GMT
A Fluent NHibernate.Search mapping interface for Lucene.NET. (more)
category: Foundation | clicked: 23 | comment | | source: blog.sb2.fr
tags: C#, Fluent Mapping, NHibernate, NHibernate.Search
7
shouts

Fluent NHibernate OR/M

published 13 days, 7 hours, 27 minutes ago posted by robertschultzrobertschultz 13 days, 22 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: 50 | comment | | source: www.robertschultz.org
tags: C#, Fluent NHibernate, NHibernate, OR/M
9
shouts

HerdingCode - Episode 70: Sean Chambers on Migrations in .NET

published 51 days, 8 hours, 27 minutes ago posted by mithumithu 52 days, 11 hours, 27 minutes ago
Tuesday, January 26, 2010 1:33:47 PM GMT Monday, January 25, 2010 10:33:52 AM GMT
This week on Herding Code, we talk to Sean Chambers about migrations in .NET with Fluent Migrator. Sean talks about how Fluent Migrator originated from Migrator.NET Sean discusses how the benefits of a semantic model in Fluent Migrator K Scott and Sean discuss how you’d start using Fluent Migrator in a project Sean talks about some useful features, like InsertData\ Jon asks about support for different databases Scott K asks about the benefits of a migration framework over a simple directory of T-SQL sc... (more)
category: Podcast | clicked: 57 | comment | | source: herdingcode.com
tags: .NET, DSL, HerdingCode, migrations, Migrator, NHibernate, T-SQL, VM
4
shouts

HunabKu: Map NHibernate using your API

posted by http://fabiomaulo.blogspot.com/http://fabiomaulo.blogspot.com/ 66 days, 16 hours, 15 minutes ago
Monday, January 11, 2010 5:45:52 AM GMT
I would say you the story of this stuff but perhaps is matter for another post if you are interested in it. In this post I will show you an example how create your API to map your domain without use XML.The Domain Complex enough ? I’m going to use various types of properties, relations as many-to-one, many-to-many, one-to-one, entities and components, collections of components, collections of scalar-types, collections as set, map, bag, list, hierarchy strategy as table-per-class and table-per-class-h... (more)
category: Architecture | clicked: 9 | comment | | source: fabiomaulo.blogspot.com
tags: Fluent Interface, NHibernate
6
shouts

Atanas Hristov: Implementing and Using Repositories with NHibernate

published 71 days, 11 hours, 49 minutes ago posted by http://atanashristov.blogspot.com/http://atanashristov.blogspot.com/ 73 days, 3 hours, 12 minutes ago
Wednesday, January 06, 2010 10:12:08 AM GMT Monday, January 04, 2010 6:48:50 PM GMT
This is an example of utilizing the Repository pattern implemented with NHibernate as data access framework but keeping in mind to provide a layer of abstraction to easy switch to another data access provider (Entity Framework for example). Patterns like Approval, Finder, Persistor, etc. Connecting to SQLite in memory; SQLite in file; Postgres with FluentNHibernate. Following the podcasts of the MVC Storefront Project at the time learning the ASP.NET MVC framework was for me really good introduction ... (more)
category: Architecture | clicked: 63 | comment | | source: atanashristov.blogspot.com
tags: NHibernate, Repository
10
shouts

Using NHibernate order-by attribute to sort names history

published 79 days, 8 hours, 31 minutes ago posted by gpeipmangpeipman 81 days, 5 hours, 11 minutes ago
Tuesday, December 29, 2009 1:29:13 PM GMT Sunday, December 27, 2009 4:49:19 PM GMT
I am writing application that besides other cool things lets users insert information about business contacts. My system is able to keep names history of contacts. In this posting I will show you how to use NHibernate mappings to keep names ordered logically. (more)
category: SQL | clicked: 51 | comment | | source: weblogs.asp.net
tags: NHibernate, SORTING
8
shouts

Implementing NHibernate Long Conversation with no HttpModules or AOP build time weaving « dotNetChris @ Marisic.Net

published 87 days, 8 hours, 15 minutes ago posted by http://dotnetchris.wordpress.com/http://dotnetchris.wordpress.com/ 90 days, 6 hours, 43 minutes ago
Monday, December 21, 2009 1:45:49 PM GMT Friday, December 18, 2009 3:18:01 PM GMT
Implementing NHibernate Long Conversation with no HttpModules or AOP build time weaving, using Castle DynamicProxy and StructureMap. (more)
category: Architecture | clicked: 85 | comment | | source: dotnetchris.wordpress.com
tags: Architecture, Castle DynamicProxy, Long Conversation, NHibernate, NHibernate Session Management, StructureMap
9
shouts

SQLite Nunit & Fluent NHibernate - Test your data access layer – Round 2

published 102 days, 27 minutes ago posted by http://daniewat82.myopenid.com/http://daniewat82.myopenid.com/ 102 days, 22 hours, 4 minutes ago
Sunday, December 06, 2009 9:33:32 PM GMT Saturday, December 05, 2009 11:56:54 PM GMT
Posted by @dotnetguyuk - Last month I wrote a post explaining how to test your data access layer by using Fluent NHibernate to generate an in-memory SQLite database from an applications domain model and fluent mappings. You can then run unit tests against the SQLite database rather than mocking objects. Over the last couple of weeks I have become less fond of Fluent NHibernate (long story! Curse & Swear!) and wanted to recreate the same functionality using NHibernates standard mappings and features.... (more)
category: Architecture | clicked: 87 | comment | | source: www.dotnetguy.co.uk
tags: NHibernate, SQLite, Unit Tests
13
shouts

Data Access: Building a Desktop To-Do Application with NHibernate

published 100 days, 21 hours, 24 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 103 days, 40 minutes ago
Tuesday, December 08, 2009 12:36:28 AM GMT Saturday, December 05, 2009 9:20:33 PM GMT
Building an NHibernate-based desktop application isn’t any harder than building a web application, and in many cases NHibernate simplifies elements of session handling and concurrency. (more)
category: Architecture | clicked: 57 | comment | | source: msdn.microsoft.com
tags: NHibernate, ORM
9
shouts

NHibernate Event Listener Registration With Fluent NHibernate

published 119 days, 11 hours, 17 minutes ago posted by ferventcoderferventcoder 120 days, 8 hours, 48 minutes ago
Thursday, November 19, 2009 10:43:53 AM GMT Wednesday, November 18, 2009 1:13:00 PM GMT
I’m a huge fan of NHibernate. It has excellent documentation and just makes the whole job of getting things into and out of the database much more enjoyable.  There is a whole series of posts on NHibernate from one of the committers, Ayende.  When Fluent NHibernate (FNH) came out, it was like butter on sliced bread.  FNH makes it even easier to use NHibernate. Ayende had a post a while back on how to use Event Listeners.  That helped me to ... (more)
category: Agile | clicked: 69 | comment | | source: ferventcoder.com
tags: Auditing, Fluent NHibernate, NHibernate, ORM
5
shouts

An xVal Provider For NHibernate Validator - Scott Kirkland

published 135 days, 9 hours, 41 minutes ago posted by DustinDustin 135 days, 15 hours, 10 minutes ago
Tuesday, November 03, 2009 12:19:23 PM GMT Tuesday, November 03, 2009 6:50:32 AM GMT
I wrote a post about a month ago about using xVal with NHibernate Validator 1.2 which solved a problem I was having upgrading the xVal ‘in-the-box’ provider to work with a newer version of NHibernate Validator. There was a caveat that my solution only worked for ValidatorMode.UseAttribute and I wouldn’t catch XML or Loquacious (or other?) validation.  This... (more)
category: Architecture | clicked: 31 | comment | | source: weblogs.asp.net
tags: NH, NHibernate, Validation, xVal
11
shouts

Stored Procedures With Fluent NHibernate

published 135 days, 9 hours, 41 minutes ago posted by http://daniewat82.myopenid.com/http://daniewat82.myopenid.com/ 136 days, 22 hours, 35 minutes ago
Tuesday, November 03, 2009 12:19:23 PM GMT Sunday, November 01, 2009 11:25:44 PM GMT
Ok the title of the post may be a little misleading because technically you cannot fluently map stored procedures, but you can still use the NHibernate configuration files to complement your fluent mappings with named query’s (calls on stored procedures) (more)
category: Architecture | clicked: 167 | comment | | source: www.dotnetguy.co.uk
tags: NHibernate
10
shouts

Building a Service Gateway Using MassTransit, Part 3 - Chris Patterson - Los Techies

published 137 days, 9 hours, 36 minutes ago posted by DustinDustin 137 days, 15 hours, 35 minutes ago
Sunday, November 01, 2009 12:24:40 PM GMT Sunday, November 01, 2009 6:25:28 AM GMT
This post is the third in a series on building a highly available service gateway. The implementation will be built in C# using MassTransit, StructureMap, ASP.NET MVC, and NHibernate.Did somebody say code? The past two posts began to explain how to build a service gateway using MassTransit. In this post, I'm going to share some of the initial code that makes up the gateway service. The gateway itself consists of two components. The first implements the communication to the ... (more)
category: ASP.NET | clicked: 69 | comment | | source: www.lostechies.com
tags: ASP.NET, ASP.NET MVC, ASPNETMVC, C#, MassTransit, MVC, NH, NHibernate, StructureMap
8
shouts

Which ORM? LINQ To SQL, Entity Framework? LLBLGen? NHibernate?…? - Mohamed Meligy

published 137 days, 9 hours, 36 minutes ago posted by DustinDustin 137 days, 15 hours, 37 minutes ago
Sunday, November 01, 2009 12:24:40 PM GMT Sunday, November 01, 2009 6:23:41 AM GMT
While I was planning to write about the same topic and have the draft ready in my Windows Live Writer waiting to complete, I found an interesting question in StackOVerflow and couldn’t just resist to answer: ORM/Persistence layer Advice The question starts with: I'm starting a new project and I'm looking around for either a very... (more)
category: Architecture | clicked: 131 | comment | | source: weblogs.asp.net
tags: Entity Framework, Linq To SQL, LLBLGen, NH, NHibernate, ORM
6
shouts

Transactional queuing system perf test - Oren Eini

published 139 days, 21 hours, 20 minutes ago posted by DustinDustin 140 days, 6 hours, 12 minutes ago
Friday, October 30, 2009 12:40:16 AM GMT Thursday, October 29, 2009 3:48:50 PM GMT
After running into sever performance issues when using MSMQ and transactions, I decided to run a more thorough test case. Writing 10,000 messages to MSMQ Transactional Queue, separate transactions: privatestaticvoid AddData(MessageQueue q1, byte[] bytes) { Console.WriteLine("{0:#,#}", bytes.Length); var sp = Stopwatch.StartNew(); for (int i = 0; i < 10000;="" i++)="" {="" q1.send(new="" message="" {="" bodystream="new" memorystream(bytes),="" label=... (more)
category: Architecture | clicked: 50 | comment | | source: ayende.com
tags: NH, NHibernate
10
shouts

Migrating to Postgresql with my friend NHibernate - Karl Seguin - CodeBetter.Com

published 141 days, 17 hours, 27 minutes ago posted by DustinDustin 143 days, 9 hours, 29 minutes ago
Wednesday, October 28, 2009 4:33:59 AM GMT Monday, October 26, 2009 12:31:52 PM GMT
Last night I decided to accelerate our plan to migrate from SQL Server to PostgreSQL and gave it a quick attempt to see what the work involved was. I was hoping that due to our usage of NHibernate, and by having meticulously written database agonistic code the migration would be cake. Turns out I was right and although there were a couple bugs along the way, the process took less than 30 minutes. Today I want to talk about the small issues we faced in migrating our code, as well as provide an overview o... (more)
category: Architecture | clicked: 46 | comment | | source: codebetter.com
tags: NH, NHibernate, PostgreSQL, SQL, SQL Server
8
shouts

NHibernate and Execution Plans

published 142 days, 9 hours, 1 minute ago posted by objectreferenceobjectreference 143 days, 11 hours, 4 minutes ago
Tuesday, October 27, 2009 12:59:23 PM GMT Monday, October 26, 2009 10:57:03 AM GMT
Lately we have been investigating ORM’s (Object Relational Mapping) frameworks for use on a large enterprise level website which we been given the rare opportunity to rebuild from the ground up in Microsoft MVC. We decided to go ahead with NHibernate until stumbled across a major issue causing queries run by NHibernate not re-using SQL Server execution plans. (more)
category: Architecture | clicked: 69 | comment | | source: www.objectreference.net
tags: NHibernate, NHibernate Performance, ORM in C#
Previous 1 2 3 4 5 6 7 8 9 10 ... 12 13 Next