私は NHibernate を初めて使用し、Fluent NHibernate automap でいくつかの問題に直面しています。
私はNhibernate 3.3.3.400、Fluent Nhibernate 1.3.0.733 Automapper 2.2.1を使用しています
データベースに Xml 型の列があります。ma マッピング列を作成しようとすると、次のエラーが表示されます。
テーブル Product からの関連付けは、マップされていないクラス System.Xml.XmlDocument を参照しています。
以下は、私が実装しようとしているコードです。
using System.Collections.Generic;
using System.Xml;
//using System.Xml.Linq;
namespace Examples.FirstAutomappedProject.Entities
{
public class Product
{
public virtual int Id { get; protected set; }
public virtual string Name { get; set; }
public virtual double Price { get; set; }
public virtual Location Location { get; set; }
public virtual IList<Store> StoresStockedIn { get; set; }
public virtual XmlDocument SalesRange { get; set; }
public Product()
{
StoresStockedIn = new List<Store>();
}
}
}
私は数日間苦労してきましたが、助けやサンプルをいただければ幸いです。