2009-07-10 6 views
0

Nous expérimentons plusieurs couches de persistance différentes pour notre projet actuel. Nous essayons d'adopter une approche POCO/PI. L'un de nos candidats est LinqToSql. Je suis le travail présenté par Vijay Mehta dans "Pro LINQ Objet relationnel Mapping avec C# 2008", dans lequel les POCO et les fichiers de cartographie sont créés à la main.LinqtoSQL - Mappage Problème: Impossible de résoudre la racine pour le type

je Poco suivant:

namespace CIN.CIN2010.DomainModel.Notifications 
{ 
    public abstract class Notification //: Repository.BaseEntity 
    { 

     public Notification(int notificationId, OwnerTag owner, DateTime creationDateTime, string message) 
     { 
      this._notificatonId = notificationId; 
      this._owner = owner; 
      this._creationDateTime = creationDateTime; 
      this._message = message; 
     } 

     // omitted for brevity 
    } 
} 

et j'ai cela pour un fichier de mappage:

<Database Name="CINFulfillment" xmlns="http://schemas.microsoft.com/linqtosql/mapping/2007"> 
    <Table Name="dbo.tblNotifications" > 
     <Type Name="CIN.CIN2010.DomainModel.Notifications.Notification, CIN.CIN2010.DomainModel" InheritanceCode="0" IsInheritanceDefault="true"> 
     <Column Name="NotificationID" Member="NotificationID" Storage="_NotificationID" DbType="Int NOT NULL IDENTITY" IsPrimaryKey="true" IsDbGenerated="true" AutoSync="OnInsert" /> 
     <Column Name="NotificationTypeID" Member="NotificationTypeID" Storage="_NotificationTypeID" DbType="TinyInt NOT NULL" /> 
     <Column Name="OwnerID" Member="OwnerID" Storage="_OwnerID" DbType="Int NOT NULL" /> 
     <Column Name="OwnerTypeID" Member="OwnerTypeID" Storage="_OwnerTypeID" DbType="TinyInt NOT NULL" /> 
     <Column Name="SubTypeID" Member="SubTypeID" Storage="_SubTypeID" DbType="TinyInt NOT NULL" /> 
     <Column Name="CreationDateTime" Member="CreationDateTime" Storage="_CreationDateTime" DbType="SmallDateTime NOT NULL" /> 
     <Column Name="Message" Member="Message" Storage="_Message" DbType="VarChar(255) NOT NULL" CanBeNull="false" /> 
     <Column Name="RequiresAction" Member="RequiresAction" Storage="_RequiresAction" DbType="Bit NOT NULL" /> 
     <Column Name="ActionTypeID" Member="ActionTypeID" Storage="_ActionTypeID" DbType="TinyInt" /> 
     <Column Name="DueDateTime" Member="DueDateTime" Storage="_DueDateTime" DbType="SmallDateTime" /> 
     <Column Name="CompletedDateTime" Member="CompletedDateTime" Storage="_CompletedDateTime" DbType="SmallDateTime" /> 
     <Column Name="CompletedStatusID" Member="CompletedStatusID" Storage="_CompletedStatusID" DbType="TinyInt NOT NULL" /> 
     </Type> 
    </Table> 
</Database> 

Lorsque je tente de charger le mappingsource, je me retrouve avec une erreur:

Failed CanInstantiateDataContext CIN.CIN2010.Persistence.L2S.Test Test method CIN.CIN2010.Persistence.L2S.Test.ContextTests.CanInstantiateDataContext threw exception: System.TypeInitializationException: The type initializer for 'Nested' threw an exception. ---> System.InvalidOperationException: Mapping Problem: Unable to resolve root for type 'CIN.CIN2010.DomainModel.Notifications.Notification'..

Des idées?

Répondre

1

Supprimer ", CIN.CIN2010.DomainModel" de l'attribut Nom. Linq to SQL trouve l'assemblage lui-même.

Questions connexes