Tagged Questions
0
votes
2answers
84 views
How can i get linq to sql to map my type when i use a parameterized constructor?
I know that L2S is not designed to map custom/POCO types to L2S-entity types without the object initializer syntax. But is there a back-book way to achieve this so that i can project into my POCO with ...
4
votes
1answer
163 views
How can i pass a Lazy<T> into my projection?
My Vehicle type:
public class Vehicle : EntityObject
{
private Lazy<string> _nameFromDelegate = null;
private Lazy<IList<Component>> _components = null;
public ...
0
votes
1answer
55 views
can i project to a different type conditionally?
If i have a Car, Bus and UnknownVehicle that derive from Vehicle then based on a "Type" field in my database, can i project into a different type based on a condition?
Like this:
public ...
1
vote
1answer
736 views
LINQ to SQL Projection: Func vs Inline
I am finding some unexpected behavior when using a projection in a LINQ to SQL query using a Func. Example code will explain better than words.
A basic L2S lambda query using projection:
...
1
vote
2answers
1k views
LINQ: Expression.Call(typeof(Queryable), “Select”
I'm attempting to create a small "automapper-esq" utility that will take a LinqToSql entity and map it to a "projection class".
So far I have something like this:
class Entity
{
public int ID { ...
0
votes
1answer
152 views
Linq to Sql Projection Help
I've reached the end of my Linq rope. Need your help!
Heres my table structure first(all linq to sql objects):
InventoryItems
-ID
-AmtInStock
IventoryKits
-ID
InventoryKits_to_InventoryItems
...
1
vote
1answer
159 views
LinqToSql: How can I create a projection to adhere to DRY?
Just wondering if there is a way to take some of the repitition out of a LINQ to SQL projected type.
Example:
Table: Address
Fields: AddressID, HouseNumber, Street, City, State, Zip, +20 more
...
1
vote
1answer
552 views
Linq Projection Question
I'm trying to do the following:
from c in db.GetAllContactsQuery()
select new
{
ID= c.ID,
LastName = c.LastName,
FirstName = c.FirstName,
Email = c.Email,
City =c.City+" "+c.State
}
...
1
vote
1answer
498 views
Linq to SQL: Projections, ViewModels, non translatable queries
My application has to deal with large amounts of data, usual select size is about 10000 rows. In order to improve performance it is recommended only to select the data needed.
When i have to do ...