Retrieve SQL Output parameters in your BOM with CodeFluent Entities
Let’s say you have an existing stored procedure that uses OUTPUT parameters to retrieve some data and you want to access it in your Business Object Model (BOM) as an object method. If you can...
View ArticleDefining type mappers when importing a database using the Importer Wizard
You can use the Importer Wizard to import an existing data base as a CodeFluent Entities model. You can access the Importer from the Modeler or the solution explorer on your CodeFluent Entities project...
View ArticleWriting a custom CodeFluent Entities aspect to encrypt/decrypt columns values...
Today, we will demonstrate how to automatically change the SQL code generated during the build process in order to encrypt and decrypt the values stored in the database columns. This is the answer to a...
View ArticleThe new SQL Server Pivot Script producer
A new producer is available since the latest builds! Enter the “SQL Server Pivot Script” producer. This producer purpose is to allow you to deploy CodeFluent Entities-generated SQL Server databases on...
View ArticleMulti-database deployment with PowerShell and the Pivot Script Runner – Part 1
We are working on a solution designed with CodeFluent Entities, which stores and manages data within a SQL Server database created by the SQL Server Producer. Sometime in the past, we deployed this...
View ArticleMulti-database deployment with PowerShell and the Pivot Script Runner – Part 2
In Part 1 of this article, we looked at using the PowerShell strengths to automate the process of updating several databases through the PivotRunner tool. Now, we want to go further and create a...
View ArticleUsing LocalDB with CodeFluent Entities
With Microsoft SQL Server 2012, Microsoft has introduced a feature called LocalDB which is a new edition of SQL Express. LocalDB is created specifically for developers and it is much easier to install...
View ArticleSQL Server In-Memory OLTP
In-Memory OLTP comes with Microsoft SQL Server 2014 and can significantly improve OLTP database application performance. It is a memory-optimized database engine integrated into the standard SQL Server...
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: 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 Article