示例#1
0
        public bool Contains <TAggregate>(object aggregateID)
        {
            var type = typeof(TAggregate);

            return(_pending.ContainsKey(type) && _pending[type].ContainsKey(aggregateID));
        }