Nand32 wrote:
All these are needed for interops between different HC systems....App DB schema
I guess you really mean something like 'data model' rather than 'database' which would be what I see when you say "DB".
Nand32 wrote:
What would you recommend?
That requires much more detail about the architecture than what you presented here. Given that there are different systems then who controls/owns those systems? That is important. But other than that transforming data between systems on communication pipelines is always a given. Even if was a good idea to use the same standard for all each system must still serialize/deserialize the binary into data. So the transform layer will always exists. And it depends on the systems on the pipe. It would seem really unlikely that you could create one template/definition to which every single system must conform when those systems must in fact be each doing something different. Not without adding unneeded complexity. What happens if you provide one standard to which 100 systems must adhere and yet a change is needed so just 2 of those systems can be updated? So ignoring all of that, if the existing external models can be easily broken down (important) to sub-models which mostly meet the communication needs of two systems, then you can use that between those two systems. But I suspect you will still need an envelope into which the sub-model is passed.
You should generally avoid async void methods[^]. As per David Fowler's async guidance[^], you can either use Task.Run to push the execution onto a background thread, or call a Task-returning method and "discard" the returned task. Either option will allow exceptions to fire the TaskScheduler.UnobservedTaskException event[^] rather than crashing the application from the finalizer thread. In this case:
internal class MainWindowViewModel
{
private MyEntity _data;
private async Task LoadData()
{
\_data = await \_repository.GETDataAsync();
// TODO: Raise any "property changed" events to notify the view that the data has loaded.
}
public void WindowLoadedExecuted()
{
\_ = LoadData();
}
}
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
If it were, it would be easy and everyone could do it. ;) :laugh:
M.D.V. ;) If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about? Help me to understand what I'm saying, and I'll explain it better to you Rating helpful answers is nice, but saying thanks can be even nicer.
Yes, in Visual Studio, right-click your project, select "Add Service Reference," input the SOAP web service URL, customize settings if needed, and proceed—it generates the C# files to call the service.
antann78 wrote:
I searched but couldn't find anything.
I used the following google search string.
Schematron C# library
About the 3rd item was the following GitHub - kzu/Schematron: A Schematron ISO/IEC standard processor for .NET, written in C#[^]
You already posted this question in Q&A. There's no need to post it again. What you do need to do is provide more information about what it is that you're actually trying to do here. That question could mean many things and the solution will depend on what it is that you're trying to do here.
Advanced TypeScript Programming Projects
not that CSSI are used on but not all [CIPD] are used on concurrent as alternative to event driven programming as procedure, to SYSAD, not construe to sitel as :: STD Cryphos negative asp
honey the codewitch wrote:
found nanosvg[^]. This is a library for doing vector graphics using SVG (Yes - that SVG the XML way to paint with geometry) I hacked it to ribbons
Wow !
«The mind is not a vessel to be filled but a fire to be kindled» Plutarch
To add to what the others have said, I'd suggest that you read this: That's not a database, dude![^] XML is a transfer format, not a data storage format.
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt AntiTwitter: @DalekDave is now a follower!
Perfect! Cheers mate! :thumbsup:
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt AntiTwitter: @DalekDave is now a follower!
Inherently, there's nothing in there that would cause the UI to resize. I assume, however, that there is a lot more to your code than this - what do you do with the DataTable? Is this being bound to something on the form?
Advanced TypeScript Programming Projects