using System.Collections.Generic;
using System.Data.Entity;
public static void Main()
using (var context = new EntityContext())
var futurValue_B = context.Customers.OrderBy(x => x.CustomerID).DeferredFirstOrDefault(x => x.Name.Equals("Customer_B")).FutureValue();
var futurValue_1 = context.Customers.OrderBy(x => x.CustomerID).DeferredFirstOrDefault().FutureValue();
FiddleHelper.WriteTable("Customers", new List<Customer>{futurValue_B.Value, futurValue_1.Value});
public static void GenerateData()
using (var context = new EntityContext())
context.Customers.Add(new Customer() { Name = "Customer_A", Description = "Description" });
context.Customers.Add(new Customer() { Name = "Customer_B", Description = "Description" });
context.Customers.Add(new Customer() { Name = "Customer_C", Description = "Description" });
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; }