A tag for ADO.
I have a pretty straight forward set of database tables, like: Vehicle Id RegNo Car Id (FK of Vehicle.Id) …
entity-framework entity-framework-4 entity-framework-4.1 entity-framework-6 table-per-typeI'm using the "stub technique" to update my POCO's (used in a detached context, ASP.NET MVC). This is the …
c# design-patterns entity-framework-4 unit-of-workI was surprised to find that at least one of my objects created by Ninject is not disposed of at …
entity-framework-4 asp.net-mvc-3 ninject idisposableIf model-first, we use [MetadataType(typeof(ConceptMetadataSource))] to attach a MetadataSource file which contains all the data annotations like [HiddenInput(…
asp.net-mvc-3 entity-framework entity-framework-4 database-firstI have a stored procedure in SQL Server 2008 called 'GetPrices' with a Table-Valued Parameter called 'StoreIDs'. This is the type …
sql-server sql-server-2008 stored-procedures entity-framework-4 table-valued-parametersso far i was creating a classLibrary project and inserting new Ado.net Entity data model and genareting from exixting …
entity-framework entity-framework-4 database-firstI need to add a field into model that Database does not have the field actually. Because, firstly I tried …
asp.net asp.net-mvc entity-framework entity-framework-4 edmxI have an Entity Framework 4.1 model that supports multiple ASP.NET MVC web applications. I use DataAnnotations to define and …
asp.net-mvc entity-framework-4 viewmodel modelmetadata data-annotationsI've inherited a project which uses Entity Framework Database First. I'm trying to work out how to update the model …
entity-framework-4 edmx ef-database-firstI am starting out with using the EF Code First with MVC and am a bit stumped with something. I …
entity-framework-4 many-to-many entity-framework-ctp5 self-reference