Hi.
I have a table with 2 fields:
Id: int pk
CheckField: nvarchar(20)
ControlField: nchar(1)
I have created my devforce entity A from this table.
Now, I want to create and insert a list of entities of type A. I want to store in CheckField the same value from Id, but sometimes (depends upon some business logic), I want to store any value. So, I would have something like this:
Id CheckField ControlField 1 1 A 2 2 A 3 0000XYZ B 4 4 A 5 5 A 6 0000FGH B
|
Is it possible to achieve using a SaveChangesAsync? I want to do this in a single transaction, and cannot use stored procedures (architectural decision)
Guillermo