0
votes
1answer
12 views
Update ONLY some fields of attached Entity
Hello,
I'm using .NET 3.5 SP1. I have entity 'AppUser':
public class AppUser : System.Data.Objects.DataClasses.EntityObject{
public int Uid {get; set;}
public string User …
1
vote
2answers
23 views
Linq to entities - searching in EntityCollection navigation properties.
We have classes
public Invoice: EntityObject
{
public EntityCollection<InvoicePosition> Positions { get {...}; set{...}; }
...
}
public InvoicePosition: EntityObjec …
4
votes
1answer
37 views
Does Entity Framework 4.0 allow to work without designers?
I currently enjoy working with NHibernate + Fluent NHibernate. I considered Entity Framework v1 because of its mature Linq support but I do not like working with clicky designers; …
1
vote
1answer
67 views
Troubles creating a proper lambda expression…
This is the code I need to alter:
var xParam = Expression.Parameter(typeof(E), typeof(E).Name);
MemberExpression leftExpr = MemberExpression.Property(xParam, this._KeyProperty);
E …
0
votes
1answer
13 views
FormDataEntities en.SaveChanges() Throwing Exeption
I heard about the new entity framework for .net, and decided to modify my code to use this framework, but when I try to add and delete records from the table, an Exception is throw …
0
votes
1answer
22 views
Problem using OrderBy with the entity framework and ObjectContext.CreateQuery(T)
Hi,
I'm having troubles using this method:
public ObjectQuery<E> DoQuery(string columnName, int maximumRows, int startRowIndex)
{
var result = (ObjectQuery<E>)_c …
0
votes
1answer
18 views
Differ Domain Model From Database Schema in Entity Framework 4.0
I'm very new to the Entity Framework and trying to understand how to best architect my data layer in way that makes the most sense from the prospective of a developer. I'm working …
0
votes
3answers
23 views
Update only the changed values on Entity object
Hi, how can i automatically update my entity objects changed values and save them to db.
I hava an Action like that
public ActionResult Update()
{
User userToUpdate = …
5
votes
3answers
95 views
Should I Use Entity Framework, DataSet or Custom classes?
Hi Guys, I am really having a hard time here. I need to design a "Desktop app" that will use WCF as the communications channel. Its a multi-tiered application (DB and application s …
1
vote
3answers
20 views
Running sql in entity framework?
Is there any way to run a sql statement straight from the entity framework generated calls? Or will I have to create a procedure then call that via the entity framework?
0
votes
1answer
15 views
Encoding in linq/entity framework
I'm working on a legacy where some fields uses special encodings. Is it somehow possible to set an decode the fields in the linq instead of doing as I'm doing now:
XisoEncoding en …
0
votes
2answers
27 views
Handling the context in Entity-framework
I have a class that provide the CRUD operation for an entity.Im using the context as private member accessible for all methods in the class.
public class CustomerService
{
…
0
votes
1answer
27 views
How to do the opposite of eager-loading in Entity Framework?
I understand in Entity Framework you can specify relationships that need to be joined with Include:
Product firstProduct =
db.Product.Include("OrderDetail").Include("Suppl …
0
votes
0answers
17 views
Using linq how do i remove multiple records from a cross reference table
Hi,
My Database contains 4 tables:
TABLE TBLCARTITEM (CART_ID, ITEM_ID, PROMOTION_ID, many more cart item fields)
TABLE XREFCARTITEMPROMOTION (CART_ID, ITEM_ID, PROMOTION_ID)
TA …
0
votes
1answer
23 views
asp.net MVC fetching data with table relations
Hello,
I have created my Database which has:
Artist, tracks and TracksPerArtists
I can do sql queries through the entity model. For example when I make:
database.TRACK.ToList()
…
