私は次のコードを持っています
class Program
{
static void Main(string[] args)
{
static void Main(string[] args)
{
DapperExtensions.DapperExtensions.DefaultMapper = typeof(CodeCustomMapper);
string sql = "select UserID,Name as SName , Email ,Email as wmail from dbo.[User]";
using (SqlConnection connection = new SqlConnection(conn))
{
var result = connection.Query<User>(sql
, commandType: CommandType.Text);
}
}
}
public class CodeCustomMapper: ClassMapper<User>
{
public CodeCustomMapper()
{
base.Table("User");
Map(f => f.UserID).Key(KeyType.Identity);
Map(f => f.Name).Column("SName");
Map(f => f.Name).Column("TName");
Map(f => f.EmailID).Column("wmail");
Map(f => f.EmailID).Column("Email");
}
}
手動でマップされた列の出力はNULLになります。デフォルトのマッパーを割り当てましたが。書き方ですか?
データベース列をエンティティプロパティで手動でマッピングする他の方法はありますか?
誰でも助けてください