Stories recently tagged with 'NHIbernate'

NHibernate.Linq Pitfalls: Casting(notherdev.blogspot.com)

submitted by notherdevnotherdev(238) 6 months, 28 days ago

One thing that needs to be always remembered when writing NHibernate.Linq queries is that it is going to be translated into SQL eventually. What this means is that we can't do everything in our Select or Where conditions - we are restricted by the capabilities of underlying database and SQL language itself. read more...

7 comments |category: |Views: 123

tags: another

NHibernate.LINQ Pitfalls: Nested queries(notherdev.blogspot.com)

submitted by notherdevnotherdev(238) 7 months, 2 days ago

NHibernate's LINQ provider is very easy to start with and sufficient for majority of use cases, but when used in more complex scenarios it can mislead and surprise. Here is one of the pitfalls (or perhaps bugs?) I've recently run into. read more...

add a comment |category: |Views: 6

tags: another

The 3 Types of Security In Enterprise Applications(cascadeofinsights.com)

submitted by AdamBellAdamBell(61) 1 year, 5 months ago

There are generally three types of security in enterprise applications: 1. Role based security - Which actions can a user do - aka role-based access control 2. Entity level security - A user can only perform an Action on certain objects/data - aka row level security 3. Field level security - A user can see or edit only certain fields of an entity – (this is really fine grained and usually a bad idea) read more...

1 comment |category: |Views: 136

tags: another

Setting Up Fluent NHibernate for your project(www.dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 2 months ago

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. read more...

add a comment |category: |Views: 461

tags: another

Introduction to Nhibernate.Burrow(www.dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 2 months ago

Taking a look at how to implement the NHibernate.Burrow session management library. NHibernate.Burrow is a light weight middleware developed to support .Net applications using NHibernate by providing advanced and smart session/transaction management and other facilitates. read more...

add a comment |category: |Views: 423

tags: another

Mindscape LightSpeed 3.0 – Advocating a Commercial ORM(ericswann.org)

submitted by ericswannericswann(145) 2 years, 5 months ago

Compares the features of Mindscape's LightSpeed 3.0 ORM with those of LINQ to SQL and NHibernate. read more...

5 comments |category: |Views: 427

tags: another

Visual NHibernate beta(slyce.com)

submitted by powerrushpowerrush(3873) 2 years, 5 months ago

Visual NHibernate makes it easier and quicker to create and maintain NHibernate projects - even very complex ones. Point it at your existing projects and start modelling them right away - visually. Visual NHibernate makes complex mapping to multiple database tables easy. Simply connect a mapping to a table field and the mapping is complete - all required NHibernate code is generated based on what is mapped. This is the only tool supporting complex mapping to multiple database tables. (Others only allow one-to-one mapping of tables and classes.) This is a true separation of the domain model and the database schema. Using complex mapping allows optimal software architectures to be built on existing legacy databases without having to redesign the database. read more...

add a comment |category: |Views: 40

tags: another

Why Linq2NHibernate is not production ready(codeofrob.com)

submitted by robashtonrobashton(384) 2 years, 6 months ago

An opinion on why you shouldn't be using Linq2Nhibernate in production systems read more...

add a comment |category: |Views: 85

tags: another

Fluent NHibernate with System.ComponentModel.DataAnnotations (weblogs.asp.net)

submitted by zowenszowens(988) 2 years, 7 months ago

Want to map your domain with DataAnnotations validation? Using Fluent NHibernate? Then take a look at how to create a simple convention! read more...

add a comment |category: |Views: 155

tags: another

Database independence with NHibernate(ayende.com)

submitted by .NetKicks.NetKicks(1304) 2 years, 7 months ago

Ayende comments on achieving database independence with NHibernate. read more...

add a comment |category: |Views: 26

tags: another

NerdDinner with Fluent NHibernate Part 3 - The infrastructure(bengtbe.com)

submitted by bengtbebengtbe(470) 2 years, 7 months ago

This is the final post in a series of three where I'm going to see how we can change the NerdDinner project to use Fluent NHibernate instead of LINQ to SQL. In this post we are going to take a look at the Nhibernate infrastructure and the dinner repository. read more...

add a comment |category: |Views: 293

tags: another

NerdDinner with Fluent NHibernate Part 2 - The mapping(bengtbe.com)

submitted by bengtbebengtbe(470) 2 years, 9 months ago

This is the second post in a series of three where I'm going to see how we can change the NerdDinner project to use Fluent NHibernate instead of LINQ to SQL. In this post we are going to take a look at the mappings. read more...

add a comment |category: |Views: 83

tags: another

NerdDinner with Fluent NHibernate Part 1 - The domain model(bengtbe.com)

submitted by bengtbebengtbe(470) 2 years, 9 months ago

This is the first post in a series of three where I'm going to see how we can change the NerdDinner project to use Fluent NHibernate instead of LINQ to SQL. In the first post we are going to take a look at the domain model. read more...

add a comment |category: |Views: 391

tags: another

Table Per Subclass Inheritance Mapping with Fluent nHibernate(ang3lfir3.wordpress.com)

submitted by ang3lfir3ang3lfir3(660) 2 years, 9 months ago

This is the third in a short series of posts I am working on. While reading through NHibernate in Action I thought to my self that I should create these same examples of Inheritance mapping using Fluent nHibernate to show how simple these mappings can be. read more...

add a comment |category: |Views: 270

tags: another

Table Per Class Hierarchy Inheritance Mapping with Fluent nHibernate(ang3lfir3.wordpress.com)

submitted by ang3lfir3ang3lfir3(660) 2 years, 9 months ago

This is the second in a short series of posts I am working on. While reading through NHibernate in Action I thought to my self that I should create these same examples of Inheritance mapping using Fluent nHibernate to show how simple these mappings can be. The three types of Inheritance mappings that are mentioned on page 92 of NHibernate in Action are :Model * Table Per Concrete Class * Table Per Class Hierarchy * Table Per Subclass I will be using the example from NHibernate in Action to illustrate the mappings. This post covers the Table Per Class Hierarchy example. read more...

add a comment |category: |Views: 488

tags: another

Table Per Class Inheritance Mapping with Fluent nHibernate(ang3lfir3.wordpress.com)

submitted by ang3lfir3ang3lfir3(660) 2 years, 9 months ago

This is the first in a short series of posts I am working on. While reading through NHibernate in Action I thought to my self that I should create these same examples of Inheritance mapping using Fluent nHibernate to show how simple these mappings can be. read more...

add a comment |category: |Views: 241

tags: another