Tagged Questions

0
votes
4answers
32 views

How do you use Models in a master page with ASP.NET MVC?

public ActionResult Index(){ var dataContext = new DataEvidencijaDataContext(); MembershipUser myObject = Membership.GetUser(); string KorisnickoI …
2
votes
2answers
50 views

Wanted : List of data following certain rules concerning dates

Hi all, here is my problem. I have a list of data, sorted by dateStart : index dateStart dateEnd value [0] 2009-11-01 04:20 2009-11-01 05:40 …
0
votes
1answer
24 views

Strongly Typing a LINQ Query using multiple keys of complex objects

I can't figure out how to define the object used in my LINQ grouping query to allow them to be strongly type. I've build a grouping query that uses two complex objects as keys. T …
2
votes
2answers
57 views

Do the Nerd Dinner models use best practices for disposing objects?

I've been looking at the Nerd Dinner code and one thing they do in their models, is create an instance of the DataContext like this: public class DinnerRepository { private N …
0
votes
1answer
25 views

Is an outer join possible with Linq to Entity Framework

There are many examples of outer join using Linq to Sql, all of them hinging on DefaultIfEmpty() which is not supported with Linq to Entity Framework. Does this mean that outer jo …
1
vote
2answers
34 views

Set values with a Linq-Query ?

In my application I have a list of items I need to sort by price and set a rank/position index for each item. I need to store the rank because the price may change afterward. At th …
0
votes
3answers
27 views

LINQ to IEnumerable<MyObj>

Hi, I have a class MyObj and a collection IEnumerable. Some of the columns are wholly empty (i.e. == NULL) across all rows and therefore I want to create an IEnumerable<> of th …
2
votes
4answers
92 views

Can LINQ use binary search when the collection is ordered?

Can I somehow "instruct" LINQ to use binary search when the collection that I'm trying to search is ordered. I'm using an ObservableCollection<T>, populated with ordered data …
0
votes
3answers
52 views

Linq used to find index of value

Can linq somehow be used to find the index of a value in an array? For instance, this loop locates the key index within an array. for (int i = 0; i < words.Length; i++) { …
0
votes
1answer
26 views

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible.

I am getting the above error when I upload my app to the hosting company.(asp.net) DB is a local sql mdf in app_data directory. on local asp.net dev server everything is ok. I am u …
2
votes
1answer
34 views

Custom LINQ provider for Excel spreadsheets?

Does anyone know a good custom LINQ provider to query data from Excel spreadsheets?
1
vote
3answers
33 views

How can i write Linq2Entities Query with inner joins

How can i get data from these related entities. I want to get these columns only: Term.Name , related Concept_Term.Weight, related Concept.Id I wrote the SQL but i dont want to u …
1
vote
4answers
32 views

Linq select different columns

I'd like select different column based on some variable instead of doing something like this if(selectLastName) var res = from e in ctx.Employees select new {e.Fi …
1
vote
1answer
30 views

Convert Expression<Func<TInterface, bool>> to Expression<Func<TImplementation, bool>>

Another Linq question =) So I have a certain interface that I can code against and an expression that has this signature Expression<Func<TInterface, bool>> At some …
1
vote
2answers
57 views

LINQ API Clarifications

I know Microsoft Implementation of LINQ.Are Different LINQ APIs availabe (third party)?

1 2 3 4 5 244 next
15 30 50 per page