This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace Concepts.ConsoleApp | |
{ | |
class Program | |
{ | |
/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using System.Web.Mvc; | |
using System.Web.Routing; | |
using FluentNHibernate.Cfg; | |
using FluentNHibernate.Cfg.Db; | |
using NHibernate; | |
using NHibernate.Context; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// GET: /Person/ | |
public ActionResult Index() | |
{ | |
var session = FeestBeest.Web.MvcApplication.SessionFactory.GetCurrentSession(); | |
using (session.BeginTransaction()) | |
{ | |
var persons = session.CreateCriteria(typeof(Person)) | |
.List<Person>(); | |
foreach (var p in persons) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Iesi.Collections.Generic; | |
namespace Concepts.Core | |
{ | |
public class Person : Entity | |
{ | |
public virtual string GivenName { get; set; } | |
public virtual string SurName { get; set; } | |
public virtual string SurNamePrefix { get; set; } | |
public virtual string OfficialName { get; set; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Iesi.Collections.Generic; | |
namespace Concepts.Core | |
{ | |
public class Address : Entity | |
{ | |
public virtual string StreetName { get; set; } | |
public virtual string StreetNumber { get; set; } | |
public virtual string PostcalCode { get; set; } | |
public virtual string City { get; set; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Concepts.Core | |
{ | |
public class PersonAddress : Entity | |
{ | |
public virtual Person Person { get; set; } | |
public virtual Address Address { get; set; } | |
public virtual string Remark { get; set; } | |
public virtual bool IsPostal { get; set; } | |
public virtual DateTime? ValidFrom { get; set; } | |
public virtual DateTime? ValidTo { get; set; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" | |
assembly="Concepts.Core" | |
namespace="Concepts.Core"> | |
<class name="Person"> | |
<id name ="Id"> | |
<generator class="guid.comb"></generator> | |
</id> | |
<property name="GivenName"></property> | |
<property name="SurName"></property> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" | |
assembly="Concepts.Core" | |
namespace="Concepts.Core"> | |
<class name="PersonAddress"> | |
<id name ="Id"> | |
<generator class="guid.comb"></generator> | |
</id> | |
<property name="Remark"></property> | |
<property name="IsPostal"></property> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" | |
assembly="Concepts.Core" | |
namespace="Concepts.Core"> | |
<class name="Address"> | |
<id name ="Id"> | |
<generator class="guid.comb"></generator> | |
</id> | |
<property name="StreetName"></property> | |
<property name="StreetNumber"></property> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using NHibernate; | |
using NHibernate.Cfg; | |
using NHibernate.Tool.hbm2ddl; | |
using Concepts.Core; | |
namespace Concepts.Tasks | |
{ | |
class Program | |
{ | |
public static void createDatabase() |
OlderNewer