Hello,
I have question :-) How to map this class
[Serializable]
public class AgentSourceCounter
{
private int agentId;
private IDictionary<int, int> sourceCounters;
protected AgentSourceCounter()
{
}
public AgentSourceCounter(int agentId, Dictionary<int, int> sourceCounters)
{
this.agentId = agentId;
this.sourceCounters = sourceCounters;
}
public virtual int AgentId
{
get { return agentId; }
protected set { agentId = value; }
}
public virtual IDictionary<int, int> SourceCounters
{
get { return sourceCounters; }
set { sourceCounters = value; }
}
}
to this table: agentId int; sourceId int; hitsCounter int;
Thanks in advice, Victor