web-dev-qa-db-ja.com

IEnumerable <T>コレクションを挿入すると、「クラスはDapperでサポートされていません」というエラーが表示され、Dapperエラーが発生します。

はい、dapper-dot-netを使用してレコードを挿入する方法について ここに質問ここに があります。しかし、答えは有益ではありますが、私を正しい方向に向けているようには見えませんでした。 SqlServerからMySqlにデータを移動する状況は次のとおりです。レコードをIEnumerable<WTUser>に読み込むのは簡単ですが、挿入物で何かを得られません。まず、「移動レコードコード」:

//  moving data
Dim session As New Session(DataProvider.MSSql, "server", _
                           "database")

Dim resources As List(Of WTUser) = session.QueryReader(Of WTUser)("select * from tbl_resource")


session = New Session(DataProvider.MySql, "server", "database", _
                      "user", "p@$$w0rd")

//    *edit* - corrected parameter notation with '@'
Dim strInsert = "INSERT INTO tbl_resource (ResourceName, ResourceRate, ResourceTypeID, ActiveYN) " & _
                "VALUES (@ResourceName, @ResourceRate, @ResourceType, @ActiveYN)"

Dim recordCount = session.WriteData(Of WTUser)(strInsert, resources)

//  session Methods
    Public Function QueryReader(Of TEntity As {Class, New})(ByVal Command As String) _
                                                            As IEnumerable(Of TEntity)
        Dim list As IEnumerable(Of TEntity)

        Dim cnn As IDbConnection = dataAgent.NewConnection
        list = cnn.Query(Of TEntity)(Command, Nothing, Nothing, True, 0, CommandType.Text).ToList()

        Return list
    End Function

    Public Function WriteData(Of TEntity As {Class, New})(ByVal Command As String, ByVal Entities As IEnumerable(Of TEntity)) _
                                                          As Integer
        Dim cnn As IDbConnection = dataAgent.NewConnection

        //    *edit* if I do this I get the correct properties, but no data inserted
        //Return cnn.Execute(Command, New TEntity(), Nothing, 15, CommandType.Text)

        //    original Return statement
        Return cnn.Execute(Command, Entities, Nothing, 15, CommandType.Text)
    End Function

cnn.Queryおよびcnn.Executeは、dapper拡張メソッドを呼び出します。ここで、WTUserクラス(注:列名がSqlServerの「WindowsName」からMySqlの「ResourceName」に変更されたため、2つのプロパティが同じフィールドを指します):

Public Class WTUser
    //    edited for brevity - assume the following all have public get/set methods
    Public ActiveYN As String
    Public ResourceID As Integer
    Public ResourceRate As Integer
    Public ResourceType As Integer
    Public WindowsName As String
    Public ResourceName As String

End Class

Dapperから例外を受け取ります:「WTUserはDapperでサポートされていません。」 DataMapper(dapper)のこのメソッド:

    private static Action<IDbCommand, object> CreateParamInfoGenerator(Type OwnerType)
    {
        string dmName = string.Format("ParamInfo{0}", Guid.NewGuid());
        Type[] objTypes = new[] { typeof(IDbCommand), typeof(object) };

        var dm = new DynamicMethod(dmName, null, objTypes, OwnerType, true); // << - here
        //    emit stuff

        //    dm is instanced, now ...
        foreach (var prop in OwnerType.GetProperties().OrderBy(p => p.Name))

この時点でOwnerType =

System.Collections.Generic.List`1 [[CRMBackEnd.WTUser、CRMBE、Version = 1.0.0.0、Culture = neutral、PublicKeyToken = null]]、mscorlib、Version = 2.0.0.0、Culture = neutral、PublicKeyToken = b77a5c561934e089

OwnerTypeはCRMBackEnd.WTUserではなくList<CRMBackEnd.WTUser> ...である必要があるようです... ???何が起こっているので、コレクションのプロパティが繰り返されているためです:カウント、容量など何が不足していますか?

更新

Session.WriteDataを次のように変更した場合:

Public Function WriteData(Of TEntity As {Class, New})(ByVal Command As String, _
                                                      ByVal Entities As IEnumerable(Of TEntity)) _
                                                      As Integer
    Dim cnn As IDbConnection = dataAgent.NewConnection
    Dim records As Integer

    For Each entity As TEntity In Entities
        records += cnn.Execute(Command, entity, Nothing, 15, CommandType.Text)
    Next

    Return records
End Function

レコードはうまく挿入されます...しかし、私はこれが次のような例を考えると必要になるとは思いませんでした:

connection.Execute(@"insert MyTable(colA, colB) values (@a, @b)",
    new[] { new { a=1, b=1 }, new { a=2, b=2 }, new { a=3, b=3 } }
  ).IsEqualTo(3); // 3 rows inserted: "1,1", "2,2" and "3,3"  

... dapper-dot-net から

33
IAbstract

これのテストを追加しました:

class Student
{
    public string Name {get; set;}
    public int Age { get; set; }
}

public void TestExecuteMultipleCommandStrongType()
{
    connection.Execute("create table #t(Name nvarchar(max), Age int)");
    int tally = connection.Execute(@"insert #t (Name,Age) values(@Name, @Age)", new List<Student> 
    {
        new Student{Age = 1, Name = "sam"},
        new Student{Age = 2, Name = "bob"}
    });
    int sum = connection.Query<int>("select sum(Age) from #t drop table #t").First();
    tally.IsEqualTo(2);
    sum.IsEqualTo(3);
}

宣伝どおりに動作します。 multi-execの動作にいくつかの修正を加えました(そのため、少し速く、object []をサポートしています)。

私の推測では、WTUserのすべてのフィールドにゲッタープロパティがないために問題が発生していました。すべてのパラメータにはリーダープロパティが必要です。これをフィールドからプルすることはサポートされていません。効率を維持するには、複雑な解析手順が必要になります。


問題の原因となった追加のポイントは、サポートされていないマッピングを持つパラメーターをdapperに渡すことです。

たとえば、次のクラスはパラメーターとしてサポートされていません。

class Test
{
   public int Id { get; set; }
   public User User {get; set;}
}

cnn.Query("select * from Tests where Id = @Id", new Test{Id = 1}); // used to go boom 

問題は、dapperがSQLを解析したnotであり、すべてのプロパティがparamsとして設定可能であると想定されていましたが、UserのSQLタイプを解決できませんでした。

最新のリビジョンはこれを解決します

47
Sam Saffron