我使用dapper,我有一个超过7种类型的映射。
我知道在dapper中存在方法IEnumerable<TReturn> Query<TReturn>(this IDbConnection cnn, string sql, Type[] types, Func<object[], TReturn> map, [Dynamic] dynamic param = null, IDbTransaction transaction = null, bool buffered = true, string splitOn = "Id", int? commandTimeout = null, CommandType? commandType = null)
并且回复here有很好的例子,但在我的情况下我无法解决。
假设有这个表
Table Poi(
Id,
Date,
LineId FK Line table,
TrackId FK Track table,
State_Id FK State table,
Type_Id FK Type table,
Category_Id FK Category table,
Processing_Id FK Processing table,
Vehicle_Id FK Vehicle table,
SystemId FK System table,
UnitId FK Unit table,
Speed)
像Poco一样:
class Poi
{
public long Id { get; set; }
public DateTime Date { get; set; }
public float Speed { get; set; }
public State State { get; set; }
public Type PoiType { get; set; }
public Category Category { get; set; }
public Processing Processing { get; set; }
public Vehicles Vehicle { get; set; }
public Line Line { get; set; }
public Track Track { get; set; }
public System System { get; set; }
public Unit Unit { get; set; }
}
并假设有这个SQL查询
select select poi.*, ps.Id, ps.Name, pt.name,pt.id,pc.id,pc.name,pc.issystem,processing.id,processing.name,processing.date, v.name,v.id,
t.id,t.name,t.code, ds.name, ds.id, du.id, du.name from Poi poi
left join State ps on poi.State_Id = ps.Id
left join Type pt on poi.PoiType_Id = pt.Id
left join Category pc on poi.Category_Id = pc.Id
left join Processing processing on poi.Processing_Id = processing.Id
left join Vehicles v on poi.Vehicle_Id = v.Id
left join Line l on poi.LineId = l.Id
left join Track t on poi.TrackId = t.Id
left join DiagSystem ds on poi.SystemId = ds.Id
left join DiagUnit du on poi.UnitId = du.Id
现在,根据附件回复,我用这个参数调用方法
connection.Query<Poi>(sql,
new[]
{
typeof(Poi),
typeof(State),
typeof(Type),
typeof(Category),
typeof(Processing),
typeof(Vehicles),
typeof(Line),
typeof(Track),
typeof(System),
typeof(Unit)
},
objects =>
{
Poi poi = objects[0] as Poi;
State ps = objects[1] as State;
Type pt = objects[2] as Type;
Category pc = objects[3] as Category;
Processing processing = objects[4] as Processing;
Vehicles v = objects[5] as Vehicles;
Line l = objects[6] as Line;
Track t = objects[7] as Track;
System ds = objects[8] as System;
Unit du = objects[9] as Unit;
poi.State = ps;
poi.Type = pt;
poi.Category = pc;
poi.Processing = processing;
poi.Vehicle = v;
poi.Line = l;
poi.Track = t;
poi.System = ds;
poi.Unit = du;
return poi;
},
new { Value = value }
,splitOn: "State_Id,PoiType_Id,Category_Id,Processing_Id,Vehicle_Id,LineId,TrackId,SystemId,UnitId"
).ToList();
但是我继续收到有关多重映射的相同错误:
Dapper.dll中的'System.ArgumentException'
其他信息:使用多映射API时,请确保您 如果你有Id以外的键
,请设置splitOn参数
你认为splon参数有错误吗?我不明白!
答案 0 :(得分:1)
而不是:
Cell
试试这个:
select poi.*, ps.Id, ps.Name, pt.name,pt.id
splitOn: "State_Id,PoiType_Id"
&#34; STATE_ID&#34;是Poi的外键。尝试拆分&#34; Id&#34;代替。另外,确保主键在select中是第一个。 Dapper将第一组列放在第一个对象中,第二组放在第二个对象中(从第一个拆分开始),依此类推。
Dapper默认分裂为&#34; Id&#34;所以在这些更改之后,您可以使用splitOn的默认值。