I\'m trying to wrap my he开发者_如何学JAVAad around linq -> nhib I have a simple bit of sql that i\'m trying to get working in nhibernate.linq
I have a products sales table that looks like this: saleDate 开发者_如何学Cprodqty 10/22/09soap10
I would like to know what the easiest and shortest LINQ query is to return true if a string contains any number character 开发者_开发技巧in it.\"abc3def\".Any(c => char.IsDigit(c));
Does anyone know of any libraries which implement an abstraction in LINQ over the Entity Attribute Value (EAV) pattern?I have a large legacy EAV database and I\'m trying to create a cleaner data acces
I am trying to build an ADO.NET Data Service with lots of entities and a few service op开发者_如何学编程erations. On one side I created a ASP.NET Web Application, in which an ADO.NET Entity Data Model
I am a beginner with LINQ and lambda function\'s. I was wondering how can i convert multiple linq statement to one statement using selectmany function.
Imagine the following list: List<List<List<String>>> listRoot = new List<List<List<String>>>();
I have a custom list which inherits from Generic.List<T> like this: public class TransferFileList<T> : List<TransferFile> { .. }
I\'m trying to work out how to create a query using Linq to NHibernate. I have two classes like this: public class Foo
I\'m using linq on a DataTable (in c#), and was wondering how to group by multiple fields. I discovered that it can be done with an anonymous class, e.g.