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
|
I am coming from EF6 at the moment and I do not feel spoiled by its features. There are some pain points where I feel thrown back to sql times when it comes to certain scenarios. This is what I miss from EF6: 1) Lazy loading of properties without the EF splitting table... 2) Do an update on an Entity without updating all fields, that means the fields which are not updated must keep the original values. 3) Code First index constraint on multiple fields generation 4) Something like context.Customers.Delete(c => c.CreationDate > mydate && ); context.SaveChanges(); I do not want to retrieve all the customers just to delete them. Just know I do not know the ids of the customers. This is a deletion on common fields. 5) Also I would like to update something strongly typed in lambda fashion. Thank you for an answer :) |
|
|
|
|
|
Thanks for all the info. about 3) Can I configure a unique constraint on multiple fields with Code First approach? (Assuming you have Code First...) |
|