Este blog contém informações úteis tanto para linguagem de programação como para padrões de projeto utilizados em muitos softwares complexos. Útil tanto para desenvolvedores experientes como para iniciantes.
quinta-feira, 18 de outubro de 2012
Entity Framework Json Serializer
Available at codeplex, a helper class to serialize EntityFramework entities with Asp.NET MVC JsonResult. This helper class solve the "Circular Reference" problem.
For more information: EFJson.
Murilo é certificado MCP, MCTS .NET Framework 3.5 Windows Form Application, ASP.NET Application, ADO.NET Application, Windows Presentation Foundation Application e Windows Communication Foundation, e MCPD Enterprise Application. Atualmente cursa engenharia de computação na Universidade de Ribeirão Preto e é sócio da Dart Digital. Possui também trabalhos na área de pesquisa com software voltado para a área biológica.
Hello, I've been testing your code. I found a podible improved following method to allow nullable values:
ResponderExcluirpublic static bool IsSimpleObjectProperty (Type propertyType)
{
return propertyType.IsPrimitive | | simpleObjectProperties.Contains (propertyType) | | (&& propertyType.IsGenericType propertyType.GetGenericTypeDefinition () == typeof (Nullable <>));
}
Thanks pepe, I put other types in Codeplex. I´ll put your code too.
Excluir