Entity framework with Linq to Entities performance
- by mare
If I have a static method like this
public static string GetTicClassificationTitle(string classI, string classII, string classIII)
{
using (TicDatabaseEntities ticdb = new TicDatabaseEntities())
{
var result = from classes in ticdb.Classifications
where classes.ClassI == classI
…