jonsequitur / Its.Cqrs

A set of libraries for CQRS and Event Sourcing, with a Domain-Driven Design flavor.
Other
76 stars 21 forks source link

Improve the SQL generated for catchup #216

Closed xavierjohn closed 6 years ago

xavierjohn commented 6 years ago

Improved the SQL generated for catchup from WHERE (StreamName ='SN' AND Type = 'T1') OR (StreamName ='SN' AND Type = 'T2')

to WHERE (StreamName ='SN' AND Type IN ('T1', 'T2'))