CodeFluent Entities is a commercial code-generation tool provided by SoftFluent that integrates into Microsoft Visual Studio 2008, 2010, 2012, 2013 and 2015. It can generate SQL scripts, code like VB or C#, UIs or web services.
Questions tagged [codefluent]
151 questions
2
votes
1 answer
Codefluent separate databases in Saas solution
I have an application built using CodeFluent that is hosted as a SAAS solution. It uses the Ms Azure database as storage but all customers are in the same database now. Considering best practices for SAAS solutions it would be better to separate…

Peter de Bruijn
- 792
- 6
- 22
2
votes
3 answers
Is it possible to add using with CodeFluent Entities snippet?
I would like to create a CodeFluent Entities snippet with some linq query inside:
return BaseList.Where(cd => cd.StartDate <= DateTime.UtcNow && cd.EndDate > DateTime.UtcNow)
.OrderByDescending(cd => cd.Rate)
.FirstOrDefault();
After…

Thomas Ledan
- 118
- 11
2
votes
1 answer
How to change BITS host url
In my WPF project, I use CodeFluent to generate my BOM and my WCF Service application.
My WCF Service application is hosted on a separate server.
ServiceBinaryLargeObject data send by my WCF application contain a "ServerUrl" property.
Its default…

Nicolas Law-Dune
- 1,631
- 2
- 13
- 30
2
votes
2 answers
Do not automatically add reference when using the Templace producer
I'm doing a CodeFluent Entities project and I use the Template Producer to generate a report that print some statistics about my model.
As I could see, this Producer automatically add two references (CodeFluent.Runtime.dll and…

LorisMayers
- 45
- 4
2
votes
2 answers
How to use Linq extension method with CodeFluent Entities template?
I'm currently using CodeFluent Entities and I want to generate a text-based report that prints some statistics about my current model.
The Template Producer meets all my expectations but I've some problems while using Linq extension methods :
[%@…

LorisMayers
- 45
- 4
2
votes
1 answer
How to properly create a new Producer?
I'm using the driven object model tool CodeFluentEntities in order to deploy a model to a DataBase engine.
I'm thinking about using localStorage database engines (like IndexedDB or Web SQL) in order to store my datas for a web application without…

cubitouch
- 1,929
- 15
- 28
2
votes
1 answer
How to manage Encrypt* and Decrypt* TSQL functions on an entity property?
I'm using CodeFluent Entities to manage my database for a ASPNET MVC3 web application. I would like to find a way to configure a Property of an Entity in my Model which would be 'transparently' managed with EncryptByPassPhrase and…

cubitouch
- 1,929
- 15
- 28
2
votes
1 answer
Visual Studio graphic modules designer
I want to create a smart and easy way to produce and generate code automatically.
It's not easy to explain, but what I want to do is something like what codefluent software (http://www.softfluent.com/) does. So design graphically a model and what is…

Marco
- 656
- 9
- 28
1
vote
0 answers
Migrate from Code Fluent to Entity Framework
I want to migrate my project from Code Fluent to entity Framework.
and i have a problem with some functions in the login controller
public static System.Data.DataSet GetSpaces(System.Guid userId)
{
if…

zarzou
- 113
- 14
1
vote
1 answer
CodeFluent returns null for a geography column
My model contains the following entity:
I have added the following partial class to the…

Willem
- 111
- 4
1
vote
2 answers
CodeFluent Entities Add Runtime Design Attribute to False
Now that the site blog.codefluententities.com is down, there is no place to get answers to frequent questions.
Even the FAQ's and blog at their main website is poor and lacks of any search tool.
At the "knowledge center" you can try to search some…

JoeCool
- 907
- 1
- 11
- 25
1
vote
1 answer
Nullable Guid Parameter in RAW method Codefluent Entities
I have a RAW method for an entity that has GUIDS as parameters.
LOADONE (Guid CwObjectGuid, Guid CountryGuid) RAW
With the corresponding body:
SELECT * FROM dbo.Bid
WHERE Bid_CwObject_Guid = @CwObjectGuid
AND ((Bid_CountryGuid = @CountryGuid) OR…

Peter de Bruijn
- 792
- 6
- 22
1
vote
1 answer
How to produce a nullable property in the lightweight entity for a database view?
My model contains the following entity:
…

Willem
- 111
- 4
1
vote
2 answers
Create/Use Codefluent CodeDomSubProducer
I'm attempting to create a CodeFluent SubProducer based on CodeFluent's document at: https://www.softfluent.com/documentation/CustomSubProducer_Topic.html
As the document describes, I've created a Visual Studio (2015) C# class library project named…

Greg Delaney
- 81
- 11
1
vote
1 answer
multi-tenant and CodeFluent Entities design
I'm designing a multi-tenant Azure application using CodeFluent Entities and plan to use Identity columns on all tables and a GUID for the Tenant ID. I have read this article >…
user1462845