What am I doing wrong? Posted in YAF.Data.MsSql model ADO.NET EDM -> Code First from the database. Specified connection yafnet(YAF). Created a file with the function Functions.cs in which he indicated:
using System;
using System.Linq;
using System.Net.Sockets;
using YAF.Data.MsSql;
namespace YAF
{
public static class Functions
{
public static string AccountsCount
{
get
{
using (CustomBase entity = new CustomBase())
{
int accountsCount = entity.ACCOUNTS_INFO.Count();
return accountsCount.ToString();
}
}
}
}
}
Then for the test indicated in the forum.ascx following:
<table>
<tr>
<td>Accounts:</td>
<td><%# Functions.AccountsCount %></td>
</tr>
</table>
After starting the application, I get:

Click to View Image46 View(s)
Guys. Very much I ask, prompt where was mistaken. I am just learning...