string updatedVotes = string.Empty;
updatedVotes = updatedVotes.Substring(0, updatedVotes.Length - 1);
db.Entry(sch).State = EntityState.Modified;
sch.Rates = updatedVotes;
db.SaveChanges();
しかし、コードは、エラーのあなたがそこに見ているので、コンパイル、およびIはありませんなぜ正確に理解することができません。誰でも助けてくれますか?は、暗黙的に型「string」を変換できません「System.Collections.Generic.ICollection <Fast.Models.Reviews>」
'updatedVotes'は' string'タイプです。 'sch.Rates'の型は' ICollection 'です。あなたはそのようにお互いに異なるタイプの変数を割り当てることはできません。それはC#101です。 –