CodeFluent Entities vs Entity Framework: Cascade save
To avoid handling every relations in your data model, you may want to ask your access layer to synchronize update operations across related entities. Entity Framework With Entity Framework you will not...
View ArticleCodeFluent Entities vs Entity Framework: Referential Integrity
Referential Integrity is about guarantee that database constraints are not violated. Databases has different concepts to ensure referential integrity such as foreign keys. Let’s see what CodeFluent...
View ArticleTeam Work with CodeFluent Entities
Working on your own and working along a whole developers team are obviously not the same. As a team, you will experience issues that you would never encounter working alone. In order to help you work...
View ArticleTable-Valued Parameters: CFQL operators
CodeFluent Query Language (CFQL) allows to quickly create simple methods. CFQL provides support for common operations with Table Value Parameters. To show result of queries we will use the following...
View ArticleTable-Valued Parameters: Use IEnumerable instead of an array
We’ve seen that CodeFluent Entities supports Table-Valued Parameters. The generated .NET method has a parameter of type array: public static CustomerCollection LoadByIds(System.Guid[] ids) What you may...
View ArticleCodeFluent Entities and Visual Studio 2015
Good things come in pairs: Visual Studio 2015 is now available for download and CodeFluent Entities latest build (61214.820) runs great on it! You can learn more about Visual Studio 2015 here: Overview...
View ArticleTable-Valued Parameters: Multi-Columns
In previous blog posts we’ve seen how to use Table-Valued Parameters (TVP) that contains one column. Today we’ll see how to use TVP that contains two columns or more. First we create our model:...
View ArticleTable-Valued Parameters: Reuse model collection types
This is the last post of the Table-Valued Parameters (TVP) series. In the previous post we saw we can use TVP with CodeFluent Entities. We started with a single column TVP, then we create a more...
View ArticleCodeFluent Entities is back!
Our software Team has worked hard on a new web site and new strategy with a free unlimited edition of CodeFluent Entites. The website is still in progress but we wanted a first version to go to Las...
View ArticleCodeFluent Entities Tour 2016
There are a few ways to get started with CodeFluent Entities. You can read the Getting Started section of our new product website or enjoy the new CodeFluent Entities Tour. In this webinar a product...
View Article