using System.Data.Entity;
public static void Main()
using (var context = new EntityContext())
var futurValue = context.Customers.DeferredLongCount().FutureValue();
Console.WriteLine("LongCount Customer is : " + futurValue.Value);
public static void GenerateData()
using (var context = new EntityContext())
context.Customers.Add(new Customer() { Name = "Customer_A", Description = "Description", Age = 20 });
context.Customers.Add(new Customer() { Name = "Customer_B", Description = "Description", Age = 30 });
context.Customers.Add(new Customer() { Name = "Customer_C", Description = "Description", Age = 32 });
public class EntityContext : DbContext
public EntityContext() : base(FiddleHelper.GetConnectionStringSqlServer())
public DbSet<Customer> Customers { get; set; }
public int CustomerID { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public int Age { get; set; }