Hi,
Can we able to update or create records using EntitySchemaQuery??
Now I am using Update class to set "UsrRupeevalue" with result a float type
Update update = new Update(UserConnection, "Contact")
.Set("UsrRupeevalue", result)
.Where("Name").IsEqual(Column.Parameter(id));
Update update = new Update(UserConnection, "Contact")
.Set("UsrRupeevalue", result)
.Where("Name").IsEqual(Column.Parameter(id));
I am getting below error in visual studio
Error CS1503 Argument 2: cannot convert from 'decimal' to 'Terrasoft.Core.DB.Select'
How can I acheive this?