Data Abstract and Blazor

What is Blazor?

Actually it is the WebAssembly framework targeted at .NET developers.

As Blazor | Build client web apps with C# | .NET says

Blazor lets you build interactive web UIs using C# instead of JavaScript. Blazor apps are composed of reusable web UI components implemented using C#, HTML, and CSS. Both client and server code is written in C#, allowing you to share code and libraries.

So here it is - a very first screenshot of a Blazor app fetching data from a Data Abstract server.

The code that accessed the data is as simple as

var channel = new HttpClientChannel { TargetUrl = "http://localhost:8099/bin" };
var service = new RemoteService(new BinMessage(), channel, true, "DataService");
var da = new LinqRemoteDataAdapter { RemoteService = service };

var query = from c in da.GetTable<Customers>() select c;

var data = await da.LoadListAsync(query);
4 Likes

Same app on iPhone XS:

2 Likes

Everything you said is correct, but I am missing the relation to Elements.
“Blazor apps are composed of reusable web UI components”

This is essential for me, I want to use these 3rd Party controls (Syncfusion, Telerik, DevExpress).
If I see it right they cannot be used im Elements.

Hello

Not sure I understand the question.
Data Abstract and Elements are separate products.

Blazor WebAssembly is a WebAssembly-based platform.

WebAssembly itself has dozens of implementation, from Elements/WebAssembly to Silverlight reincarnation or Go/wasm

A post was split to a new topic: Can I use Blazor ThirdParty Controls and Elements together