Hi,
I have to use a queryview + modificationfunctionmapping for my class. The generation of the ID does not work as soon I exchange the "EntityTypeMapping" with a very simple "QueryView".
the mapping with the queryview may look like:
<EntitySetMapping Name="TestSet">
<QueryView>
select value
TestModel.Test(t.testid, t.value)
from TestModelStoreContainer.test as t
</QueryView>
...
+ some ModificationFunctionMapping for insert (with ResultBinding) , update and delete
...
</EntitySetMapping>
if i use pure entityframework, this works fine:
using (var ctx = new Model.TestEntities())
{
var test = new Model.Test();
test.value = "test";
ctx.AddToTestSet(test);
Assert.LessOrEqual(test.testid, 0);
ctx.SaveChanges();
Assert.Greater(test.testid, 0);
}
if i use Devforce EntityManager, the ID is not generated.
var manager = DomainModel.DomainModelEntityManager.DefaultManager;
var test2 = manager.CreateEntity<DomainModel.Test>();
test2.value = "test2";
test2.EntityAspect.AddToManager();
Assert.Less(test2.testid, 0); // testid == 0 :(
manager.SaveChanges();
Assert.Greater(test2.testid, 0); // testid == 0 :(
Wenn SaveChanges is executed, the insert-command is executed and the data with the new testid is fetched by the EntityManager. -> there are two instances of test in the chache now. one with testid==0 and the other one with the id generated by the database.
Is there any way to use queryview-mapping with the standard id-generator?