I am currently using AutoMapper to map my Entity Framework entities to my View Model: public class ProductsController : Controller
I\'m using RIA Services with EF and a Silverlight UI and the built-in validation framework. Problem is the following:
I\'m trying to create a model with Code First approach. I wanted to know if it\'s possible to map an Enum property to a varchar column in the database.
This my code. Simplified for readability var query = from p in people select p; // here is the point that probably causes the issue
I am used to using datasets for my projects in terms of data access. I now set mys开发者_开发知识库elf an easy app to work on in order to learn the entity data framework and how to retrieve & mani
The LINQ code returns a anonymous type how can I return a strong type of \"Customers\"? I am returning a anonymous type as I only want to select certain fields from the entity.
I have a situation where my application constructs a dynamic LINQ query using PredicateBuilder based on user-specified filter criteria (aside: check out this link for the best EF PredicateBuilder impl
I have an object Tag that is linked to a whole bunch of other objects.I am attempting to handle the Delete for this object.I simply don\'t want to delete the tag if it is associated to any other objec
How can I expose an Entity Framework IQueryable<T> over WCF? I\'m thinking of writing an N-tier application framework and I would like to use Entity Framework and WCF.
I am currently having trouble with some some linq using EF code first. My current code works fine: My database model