Download net property builder
Author: q | 2025-04-24
Download .NET Property Builder 0.1 - Generate set statements for your language of choice . J, Java, and VB.NET. Give .NET Property Builder a try to see what it's all about!
.NET Property Builder 0.1 - Download, Screenshots
Active Query Builder » News » Active Query Builder .NET Edition News September 29, 2014 Active Query Builder 2 .NET Edition 2.9 is released. We're glad to announce the new version of Active Query Builder 2 .NET Edition. You can evaluate the new version by requesting the trial. Customers can download the new version in the Customer's area. What's new in the Active Query Builder .NET Edition version 2.9?Major improvements:Ability to save queries as persistent reusable objects for using as views in the following queries is added to the Professional .NET Subcription. Read more about the Reusable Queries in the Knowledge Book. Use the PanesConfigurationOptions.UserQueriesPaneVisible property to show/hide the new "Reusable Queries" snippet. To save and load user queries, use import/export methods of the QueryBuilder.UserQueries object.Advanced Expression Editor, SQL Text Editor and Criteria Builder controls are skinned correctly with the DevExpress controls UI in Professional .NET Subcription.Database Schema Tree performance is improved.Minor improvements and API changes:The new MetadataItem.UserData property is added to allow storing custom data for any metadata object.The Linked Objects menu now shows "No linked objects" item if no linked objects were found.It is now possible to set different color for focused links using the QueryBuilder.DesignPaneOptions.LinkStyle.LinkColorFocused property.Query Transformer now supports Skip() with ROW_NUMBER ranking function for DB2 and MS SQL Server 2005-2008.MS Access: Query Transformer is able to use Limit() with MS Access now.The Show Query By Parts demo is replaced with the improved SubQuery Results Preview demo.The DevExpress Demo source code sample project is added for C# and VB.NET.SQL syntax improvements and changes:Oracle: Support for SEARCH and CYCLE clauses in CTE subqueries is made.RedShift: Loading of metadata using PostgreSQL syntax provider is fixed.Vertica: Information about foreign keys can be extracted using native DB connection. MS Access: The parser now accepts identifiers quoted with backticks and convert them to square brackets.MS SQL Server: New MSSQL 2012 analytic functions are added.MS SQL Server: OFFSET-FETCH clause is supported by Query Transformer.MS SQL Server: IIF function and "WITHIN GROUP" clause are supported now.MS SQL Server: Loading of foreign keys for SQL Server 2000 and earlier is fixed.PostgreSQL: Parsing of ROW clause is speeded up.PostgreSQL: Metadata loading is speeded up. at ActiveDBSoft. » All Active Query Builder .NET Edition news Comments by Disqus: Download .NET Property Builder 0.1 - Generate set statements for your language of choice . J, Java, and VB.NET. Give .NET Property Builder a try to see what it's all about! ASP.NET introduced new declarative expression syntax which allows you to substitute values into page at run time called Expression builders. You can make extensive use of expressions for referencing string resources for localization, connection strings and application settings from configuration file. Expressions are evaluated at run time when the declarative elements of the page are parsed, and the value represented by the expression is substituted for expression syntax.A common use of expressions is in data source controls to reference a connection string. Rather than including the connection string directly in the data source control as a property value, you can use an expression that specifies where the connection string is in the configuration file. At run time, the expression is resolved by reading the connection string from the configuration file. You can use expressions for any property setting that you want to resolve at run time rather than set as a static value.Expression builders allow property values to be set and retrieved in a control during page parsing. When the page parser encounters an expression in the format., it creates an expression builder based on prefix and passes the value to the expression builder for evaluation. The expression builder then returns the requested value to the page.Benefits of expression buildersYou can avoid writing lengthy code to set property values at run time. Expression builders allows to include dynamic information using one declarative statement.A single Expression builder can be referenced across multiple pages. All changes to expression can be made at a central location. Ex: Expression builder for connection strings.Expression builders are extensible. You can define custom Expressions that call your custom expression handler to return a value that will be substituted at run time.Expression builder syntax is language neutral. You can same syntax across universal .Net languagesExpression builder offers both design time support as well as parse-time support. Design time support means you can built expression using Expression Dialog when accessed using properties window of control.Expression builder can also be constructed to support no-compile feature of ASP.NET 2.0. That means, run time instantiates the expression builder and evaluates expression even before you compile the application. You can place expression builder into App_Code folder. There is sample Expression Builder Visual Studio .NET project, used in this tutorial. Syntax for Expression buildersThe syntax for Expression builders is as follows:The dollar sign ($) indicates to ASP.NET that an expression follows. The expression prefixComments
Active Query Builder » News » Active Query Builder .NET Edition News September 29, 2014 Active Query Builder 2 .NET Edition 2.9 is released. We're glad to announce the new version of Active Query Builder 2 .NET Edition. You can evaluate the new version by requesting the trial. Customers can download the new version in the Customer's area. What's new in the Active Query Builder .NET Edition version 2.9?Major improvements:Ability to save queries as persistent reusable objects for using as views in the following queries is added to the Professional .NET Subcription. Read more about the Reusable Queries in the Knowledge Book. Use the PanesConfigurationOptions.UserQueriesPaneVisible property to show/hide the new "Reusable Queries" snippet. To save and load user queries, use import/export methods of the QueryBuilder.UserQueries object.Advanced Expression Editor, SQL Text Editor and Criteria Builder controls are skinned correctly with the DevExpress controls UI in Professional .NET Subcription.Database Schema Tree performance is improved.Minor improvements and API changes:The new MetadataItem.UserData property is added to allow storing custom data for any metadata object.The Linked Objects menu now shows "No linked objects" item if no linked objects were found.It is now possible to set different color for focused links using the QueryBuilder.DesignPaneOptions.LinkStyle.LinkColorFocused property.Query Transformer now supports Skip() with ROW_NUMBER ranking function for DB2 and MS SQL Server 2005-2008.MS Access: Query Transformer is able to use Limit() with MS Access now.The Show Query By Parts demo is replaced with the improved SubQuery Results Preview demo.The DevExpress Demo source code sample project is added for C# and VB.NET.SQL syntax improvements and changes:Oracle: Support for SEARCH and CYCLE clauses in CTE subqueries is made.RedShift: Loading of metadata using PostgreSQL syntax provider is fixed.Vertica: Information about foreign keys can be extracted using native DB connection. MS Access: The parser now accepts identifiers quoted with backticks and convert them to square brackets.MS SQL Server: New MSSQL 2012 analytic functions are added.MS SQL Server: OFFSET-FETCH clause is supported by Query Transformer.MS SQL Server: IIF function and "WITHIN GROUP" clause are supported now.MS SQL Server: Loading of foreign keys for SQL Server 2000 and earlier is fixed.PostgreSQL: Parsing of ROW clause is speeded up.PostgreSQL: Metadata loading is speeded up. at ActiveDBSoft. » All Active Query Builder .NET Edition news Comments by Disqus:
2025-04-02ASP.NET introduced new declarative expression syntax which allows you to substitute values into page at run time called Expression builders. You can make extensive use of expressions for referencing string resources for localization, connection strings and application settings from configuration file. Expressions are evaluated at run time when the declarative elements of the page are parsed, and the value represented by the expression is substituted for expression syntax.A common use of expressions is in data source controls to reference a connection string. Rather than including the connection string directly in the data source control as a property value, you can use an expression that specifies where the connection string is in the configuration file. At run time, the expression is resolved by reading the connection string from the configuration file. You can use expressions for any property setting that you want to resolve at run time rather than set as a static value.Expression builders allow property values to be set and retrieved in a control during page parsing. When the page parser encounters an expression in the format., it creates an expression builder based on prefix and passes the value to the expression builder for evaluation. The expression builder then returns the requested value to the page.Benefits of expression buildersYou can avoid writing lengthy code to set property values at run time. Expression builders allows to include dynamic information using one declarative statement.A single Expression builder can be referenced across multiple pages. All changes to expression can be made at a central location. Ex: Expression builder for connection strings.Expression builders are extensible. You can define custom Expressions that call your custom expression handler to return a value that will be substituted at run time.Expression builder syntax is language neutral. You can same syntax across universal .Net languagesExpression builder offers both design time support as well as parse-time support. Design time support means you can built expression using Expression Dialog when accessed using properties window of control.Expression builder can also be constructed to support no-compile feature of ASP.NET 2.0. That means, run time instantiates the expression builder and evaluates expression even before you compile the application. You can place expression builder into App_Code folder. There is sample Expression Builder Visual Studio .NET project, used in this tutorial. Syntax for Expression buildersThe syntax for Expression builders is as follows:The dollar sign ($) indicates to ASP.NET that an expression follows. The expression prefix
2025-04-12"Robert C. Martin" }]Navigate to here} to test the controller's overloaded Get action method. A JSON response similar to the following is displayed:{ "id": "61a6058e6c43f32854e51f52", "bookName": "Clean Code", "price": 43.15, "category": "Computers", "author": "Robert C. Martin"}Configure JSON serialization optionsThere are two details to change about the JSON responses returned in the Test the web API section:The property names' default camel casing should be changed to match the Pascal casing of the CLR object's property names.The bookName property should be returned as Name.To satisfy the preceding requirements, make the following changes:In Program.cs, chain the following highlighted code on to the AddControllers method call:var builder = WebApplication.CreateBuilder(args);// Add services to the container.builder.Services.Configure( builder.Configuration.GetSection("BookStoreDatabase"));builder.Services.AddSingleton();builder.Services.AddControllers() .AddJsonOptions( options => options.JsonSerializerOptions.PropertyNamingPolicy = null);With the preceding change, property names in the web API's serialized JSON response match their corresponding property names in the CLR object type. For example, the Book class's Author property serializes as Author instead of author.In Models/Book.cs, annotate the BookName property with the [JsonPropertyName] attribute:[BsonElement("Name")][JsonPropertyName("Name")]public string BookName { get; set; } = null!;The [JsonPropertyName] attribute's value of Name represents the property name in the web API's serialized JSON response.Add the following code to the top of Models/Book.cs to resolve the [JsonProperty] attribute reference:using System.Text.Json.Serialization;Repeat the steps defined in the Test the web API section. Notice the difference in JSON property names.Add authentication support to a web APIASP.NET Core Identity adds user interface (UI) login functionality to ASP.NET Core web apps. To secure web APIs and SPAs, use one of the following:Microsoft Entra IDAzure Active Directory B2C (Azure AD B2C)Duende Identity ServerDuende Identity Server is an OpenID Connect and OAuth 2.0 framework for ASP.NET Core. Duende Identity Server enables the following security features:Authentication as a Service (AaaS)Single sign-on/off (SSO) over multiple application typesAccess control for APIsFederation GatewayFor more information, see the Duende Identity Server documentation (Duende Software website).Additional resourcesView or download sample code (how to download)Create web APIs with ASP.NET CoreController action return types in ASP.NET Core web APICreate a web API with ASP.NET CoreThis tutorial creates a web API that runs Create, Read, Update, and Delete (CRUD) operations on a MongoDB NoSQL database.In this tutorial, you learn how to:Configure MongoDBCreate a MongoDB databaseDefine a MongoDB collection and schemaPerform MongoDB CRUD operations from a web APICustomize JSON serializationPrerequisitesMongoDB 6.0.5 or laterMongoDB ShellVisual StudioVisual Studio CodeVisual Studio for MacVisual Studio 2022 with the ASP.NET and web development workload..NET 6.0 SDKVisual Studio CodeC# for Visual Studio Code (latest version).NET 6.0 SDKThe Visual Studio Code instructions use the .NET CLI for ASP.NET Core development functions such as project creation. You can follow these instructions on macOS, Linux, or Windows and with any code editor. Minor changes may be required if you use something other than Visual Studio Code.Visual
2025-04-02April 29, 2016 Active Query Builder for .NET (WinForms and WPF) 3.1 is released. This is the final release. WinForms DevExpress controls UI is added, flat view mode for Database Schema Tree is made, lots of bugs are fixed. February 01, 2016 The new purchase options and the new beta version of Active Query Builder WinForms and WPF editions are available The sub-query navigation bar is updated, migration and quick start guides are published. December 14, 2015 Active Query Builder 3: new major version for WinForms and WPF is out. Download and try now! The first beta version of WinForms and WPF editions introduces the new component's architecture and the new sub-query navigation bar. September 02, 2015 Active Query Builder WinForms .NET Edition 2.10.3 is released Criteria Builder gets two-way syncronized with the Query Transformer. July 16, 2015 Active Query Builder WinForms .NET Edition 2.10 is released. Support for Netezza and Advantage DB SQL syntaxes is made. September 29, 2014 Active Query Builder 2 .NET Edition 2.9 is released. Ability to save queries as persistent reusable objects for using as views in the following queries is made. April 13, 2014 Active Query Builder 2 .NET Edition 2.8 is released. Support for MS SQL Server 2014 is added, Quick search in the Database Schema Tree is improved. February 03, 2014 Active Query Builder 2 .NET Edition 2.7 is released. Search in the Database Schema Tree and Add Object Window is made. November 25, 2013 Active Query Builder 2 .NET Edition 2.6 is released. Referenced tables and distinct field lookup with filtration for handy value selection in Criteria Builder is made. October 04, 2013 Active Query Builder 2 .NET Edition 2.5 is released. Browse for linked objects and add them to the query with a single click. Layout of datasource objects is now preserved after parsing of the modified query.
2025-03-29- CD Burner/ISO actions - Fixed nil pointer exception. Bug Fix - VSTest Action - fixed issue with detecting failures on localised versions of VS. Bug Fix - Embarcadero Resource Compiler Action - fix for Delphi 10.3. Bug Fix - Send Email Action - Fixed reconnection issue when using SSL. Bug Fix - Delphi Action - Linux 64 support - was always using the default sdk rather than the one selected by the project. FinalBuilder IDE Enhancement - Show full project path in Build history view.. FinalBuilder 8.0.0.2496 November 22nd, 2018 FinalBuilder Actions Enhancement - Delphi Action - added support for Delphi 10.3 Rio Enhancement - C++Builder Action - added support for C++Builder 10.3 Rio Enhancement - Scripting - exposed Action.RetryCount property to scripting (read only). Enhancement - Multi Question Action - added option to use variable values as defaults. Enhancement - EC2 Actions - added EC2 Tag Resources and EC2 Get Resource Tags actions. Enhancement - .NET Actions - .net sdk detection - added better support for 4.7.2 Enhancement - SSH Actions - improved detection of dropped connections. Enhancement - SSH Execute Command Action - added option to try reconnect if needed. Enhancement - SSH Execute Commands Action - added logging of command output. Bug Fix - SFTP Upload - improved error handling. Bug Fix - FTPS Actions - fixed issue with restarting projects Bug Fix - FTPS Upload Action - fixed issue with uploading files to IIS. Bug Fix - FTPS Upload Action - improved performance of remote folder creation. Bug Fix - Delete Scheduled Task Action - action was failing on Server 2016/Windows 10 even when option to ignore not found was set. Bug Fix - Delphi Action - added RIDLOutputSameFolder property, when unchecked tlb will be output to project root folder. FinalBuilder 8.0.0.2468 September 18th, 2018
2025-03-30