make byte[] property load lazy
I'm using EF4 Code First and I have a property: public byte[] Bytes {get;set;} can I make this property load lazily ( only when it's needed) ? Table spliting works in EF 4.1 RC: public class Item { public int Id { get; set; } ... public virtual ItemDetail ItemDetail { get; set; } } public class ItemDetail { public int Id { get; set; } public byte[] Bytes { get; set; } } public class Context : DbContext { public DbSet<Item> Items { get; set; } public DbSet<ItemDetail> ItemDetails { get; set; } protected override void OnModelCreating(DbModelBuilder modelBuilder) { base.OnModelCreating