rubenalves
rubenalves
I added DisableSmartLoad and it looks ok now, i will make some more tests. The complex object is a entity with several rrelated entities, like a invoice. Thanks.
Hello, Yes, i disabled the smartload and it is working as expected. I did not have much time for furder tests because i am refactoring my app. Just another unrelated...
Hello, I have updated to 3.5. and my model does not Build, is there any breaking changes?
The problem is there are no eror messages, only that the model does not Build. I will try again and se if i can see a error on the debugger
O got this error: Initializing EntityApp TsGest 2023.==================================== Building entity model... AuditMensagem.ID: Index/key attribute (Vita.Entities.PrimaryKeyAttribute) on member should not have explicit member list.
It hade atributes and thar entity is not needed any more, so it is runing fine now. Thanks.
The error is that there does not exist the column Utilizador_ID
I have gave up on PostGres. By the way how can i map to a readonly property that is a calculated column in sql server?
It responds to my question. I resolved my problem using stored procedures. Very bad decision on RepoDB side to remove the IgnoreAttribute or something like Dapper [Map(read-only)] - something like...
I think that a option like [Computed] public decimal Balance { get; set; } or [ReadOnly] public decimal Balance { get; set; } world be easy to impletent and ignore...