This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
This code throws an exception: using (var unitOfWork = Repository.Context.CreateUnitOfWork()) Where as this works (which is syntatically the same) using (var unitOfWork = Repository.Context.CreateUnitOfWork())
|
|
|
This is a known bug in the LINQ provider. Similarly, to look for the first non-initial state, you would currently have to write cs => cs.InitialState == false rather than cs => !cs.InitialState. I've bumped the priority and we'll aim to get this fixed for 2.2. |
|