DataContractJsonSerializer / Linq oddity? Nope, it’s just me :-(
[Once again the code is on my other machine but…] So using Microsoft’s Entity Framework with .NET 4 as a data access layer, I select some entity Client objects properties that meet my criteria and take 20 via linq. Something to the effect of: var clientList = (rom client in entities.Clients whereclient.LastName.StartsWith(“min”) select new ClientInfo() […]