DotNetShoutout - Stories tagged with Fluent API
3
Shouts

Creating a Many To Many Mapping Using Code First - Gil Fink's Blog

published 686 days, 12 hours, 3 minutes ago posted by gilfgilf 689 days, 33 minutes ago
Wednesday, August 03, 2011 7:53:16 PM GMT Monday, August 01, 2011 7:22:52 AM GMT
Today I got a question about how to create a many to many mapping using Entity Framework Code First. The question was how to create the mapping with an existing database. Here is an explanation how to achieve that. (more)
category: How To | clicked: 58 | comment | | source: blogs.microsoft.co.il
tags: Fluent API, many to many, Entity Framework, Code first
7
Shouts

Fluent XML Serialization–Part 3: How Serialization Is Performed

published 788 days, 16 hours, 59 minutes ago posted by Matt_TCFMatt_TCF 789 days, 17 hours, 57 minutes ago
Saturday, April 23, 2011 2:56:38 PM GMT Friday, April 22, 2011 1:59:01 PM GMT
Reflection is a powerful tool when used correctly. In this penultimate chapter of Fluent XML Serialization, I will show you how Fluently-XML uses configuration data built up from a domain-specific language to perform serialization at runtime. (more)
category: How To | clicked: 16 | comment | | source: trycatchfail.com
tags: Fluent API, Serialization, XML, DSL
5
Shouts

Fluent XML Serialization–Part 2: Compiling Serialization

published 821 days, 10 hours, 48 minutes ago posted by Matt_TCFMatt_TCF 822 days, 5 hours, 13 minutes ago
Monday, March 21, 2011 9:07:32 PM GMT Monday, March 21, 2011 2:42:42 AM GMT
Fluently-XML is an extensible XML serialization library that sports a simple domain-specific language for specifying serialization behavior. In this post, I will show you how the configuration data is "compiled" into classes that perform serialization at runtime. (more)
category: Architecture | clicked: 1 | comment | | source: trycatchfail.com
tags: Fluent API, Domain-Specific Language Tools, XML, DSL
8
Shouts

Fluent XML Serialization–Introduction

published 835 days, 13 hours, 24 minutes ago posted by https://www.google.com/accounts/o8/id?id=AItOawk2htN-7q78-ZZN0dRD79_YhNyvI7sAxUYhttps://www.google.com/accounts/o8/id?id=AItOawk2htN-7q78-ZZN0dRD79_YhNyvI7sAxUY 836 days, 9 hours, 35 minutes ago
Monday, March 07, 2011 6:31:51 PM GMT Sunday, March 06, 2011 10:21:10 PM GMT
The System.Xml.XmlSerializer class enables .NET applications to serialize/deserialize most types to and from XML using only a few lines of code. This is a great capability and provides an easy API for simple persistence and interoperability scenarios. As a developer, you have some degree of control over the XML that’s generated, but the process is mostly rigid and not easy to extend or customize. I have created a new flexible XML serialization framework that overcomes the limitations of the XmlSeriali... (more)
category: How To | clicked: 6 | comment | | source: trycatchfail.com
tags: .NET, Fluent API, XML, Domain Specific Language, DSL
3
Shouts

EF Feature CTP5: Inheritance Scenarios with Code First Fluent API - Gil Fink on .Net

published 919 days, 5 hours, 57 minutes ago posted by gilfgilf 920 days, 21 hours, 20 minutes ago
Tuesday, December 14, 2010 1:58:42 AM GMT Sunday, December 12, 2010 10:35:47 AM GMT
One of the interesting features of Code Firstfluent API is the ability to configure inheritance in your model. Since one of the strengths of an O/RM solution is its ability to map inheritance then this feature is a must in every mapping scenario (may it be Model first, Database First or Code First). In this post I’ll show how to configure inheritance by using the fluent API. (more)
category: How To | clicked: 0 | comment | | source: blogs.microsoft.co.il
tags: Fluent API, Code first, Entity Framework 4, CTP