Я предполагаю, что Aciklama имеет строковый тип
@Html.DisplayFor(model => model.Aciklama).ToString().Substring(0,50)
или использует расширения
namespace YourApp.Extensions
{
public static class StringExtensions
{
public static string Truncate(this string input, int max)
{
if(!String.IsNullOrEmpty(input) && input.Length > max)
{
return input.Substring(0,max);
}
}
}
}
По вашему мнению добавьте с помощью YourApp.Extensions;
@Model.Aciklama.Truncate(50)