i have an extension method which a person was really helpful to give me... it does an orderby on IQueryable ... but i wanted one to do a normal IQueryable (non generic)
I am using the latest Nhi开发者_JAVA技巧bernate and i have a linq query to return just 1 column. so I can\'t use for example IQueryable as there is no entity class - i am returning only 1 column. But
I am pulling two values from a MYSQL database. I have one int and one deci开发者_JAVA技巧mal...how do I add them?
I am using ASP.NET MVC2 with EF4. I need to create POCOs for two of my classes PersonP and AddressP, which correspond to their EF4 \'complex\' classes (which include things like navigation properties
I have a dynamic list of values, which i want to query against an IQueryable with OR conditions. How would I foreach the val开发者_开发问答ues to \"OR\" them up against the IQueryable?you can make a
I want to merge the records of two IQueryable lists in C#. I try IQueryable<MediaType> list1 = values;
I just want to know if there is a开发者_JAVA百科ny known issue, or if I\'m doing something wrong. Everytime I do something like the example below, I get an error \"the server failed to resume the tran
That is, I want to do this: var lists = (from list in this.DB.Lists 开发者_StackOverflow社区 select new
I\'m trying to write a custom filter for Dynamic data that will allow me to run like type queries on entity columns. For example searching for john on name field to returen johnson, johns etc.
I have a LINQ dbml class that I am wrapping in a POCO. I have built overloaded constructors that take the DBML class and init. the wrapper objects properties based on the dbml object passed in.