Preguntas etiquetadas con entity-framework

Para preguntas sobre ADO.NET Entity Framework, las herramientas de correlación de objetos relacionales (ORM) para .NET Framework. Agregue una etiqueta específica de versión, cuando corresponda. NO use esta etiqueta para las preguntas de Entity-Framework-core. Use entity-framework-core en su lugar.








12
EntityType no tiene error de clave definida
Controlador: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using MvcApplication1.Models; using System.ComponentModel.DataAnnotations.Schema; namespace MvcApplication1.Controllers { public class studentsController : Controller { // // GET: /students/ public ActionResult details() { int id = 16; studentContext std = new studentContext(); student first = std.details.Single(m => m.RollNo == id); return …



6
LINQ To Entities no reconoce el método Last. De Verdad?
En esta consulta: public static IEnumerable<IServerOnlineCharacter> GetUpdated() { var context = DataContext.GetDataContext(); return context.ServerOnlineCharacters .OrderBy(p => p.ServerStatus.ServerDateTime) .GroupBy(p => p.RawName) .Select(p => p.Last()); } Tuve que cambiarlo a esto para que funcione public static IEnumerable<IServerOnlineCharacter> GetUpdated() { var context = DataContext.GetDataContext(); return context.ServerOnlineCharacters .OrderByDescending(p => p.ServerStatus.ServerDateTime) .GroupBy(p => p.RawName) .Select(p …
144 c#  entity-framework  orm 



2
Entity Framework .Remove () vs. .DeleteObject ()
Puede eliminar un elemento de una base de datos utilizando EF utilizando los siguientes dos métodos. Método EntityCollection.Remove Método ObjectContext.DeleteObject El primero está en el EntityCollectiony el segundo en el ObjectContext. ¿Cuándo se debe usar cada uno? ¿Se prefiere uno sobre el otro? Remove()devuelve una booly DeleteObject()retornos void.


Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.