Along the same line, how do I set a Field value like this:
private void SetStuff(IEntityFields Fields, IEntityCollection Collection)
{
Collection.GetMulti(some predicate);
foreach (EntityBase entity in Collection)
{
entity.IsNew = true;
** entity.Fields["A name of a field"] = a value;** -- FAILS of course
}
}