This tag is for the ADO.
I have a stored procedure that has three parameters and I've been trying to use the following to return the …
c# sql ado.net linq-to-entities entity-framework-ctp5I'm creating a POCO model to use with entity framework code first CTP5. I'm using the decoration to make a …
entity-framework code-first entity-framework-ctp5With EF4 CTP5 DbContext, what is the equivalent of this public void Refresh(Document instance) { _ctx.Refresh(RefreshMode.StoreWins, instance); } …
entity-framework-4 entity-framework-ctp5 ef-code-firstGiven a EF-Code First CTP5 entity layout like: public class Person { ... } which has a collection of: public class Address { ... } which …
c#-4.0 entity-framework-ctp5 ef-code-firstIn this blog post: EF4 Code First Control Unicode and Decimal Precision, Scale with Attributes, Dane Morgridge used attributes to …
entity-framework ef-code-first entity-framework-ctp5Using Entity Framework Code First CTP5, how do I create a primary key column that are INTs and are not …
entity-framework code-first entity-framework-ctp5I am using EF4 CTP 5, CodeFirst. Please see my classes first: public class Guest { [Key] public Guid GuestID { get; set; } …
entity-framework-4 entity-framework-ctp5 cascading-deletesI have this class and table: public class Foo { public Guid Id {get;set;} public string Name {get;set;} } create …
entity-framework-4 code-first entity-framework-ctp5 ef4-code-onlyI'm using the mvc-mini-profiler in my project built with ASP.Net MVC 3 and Entity Framework code-first. Everything works great until …
ef-code-first entity-framework-ctp5 mvc-mini-profilerUsing Entity Framework 4 CTP5 Code First and this example Is it possible to access the discriminator value? I would like …
entity-framework-4 code-first entity-framework-ctp5