Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I'm developing an ERP system ( logistics, WMS , Sales, etc.) in C # using DDD and I 'm trying to apply MicroServices and entered the big question:
How to organize microservices in an ERP , the responsabilides and how the core functions ?
Does anyone have any practical example ?
Model your domain problem and the boundaries will become apparent. You're making the mistake of designing by technology, pattern, and framework first; instead of modeling your problem domain first and then considering consistency, concurrency, performance etc.
If you're not driving your solution by first considering the domain, you're not doing DDD.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I am trying to make an economy bot for discord using C#. I am confused about how I am going to do it. I might have to use databases but in that case how do I make it so it makes a new line for every user that has used the command. Any help would be nice, thanks.
You need to use a database. If this is your first time using databases, I highly recommened SQLite. You should also see video tutorials such as this one.
Once you have familiarised yourself with a SQLite databases then you will be able to answer your own question extremely easily. It is not difficult and requires some very simple logic. Attempt it yourself first and if you are still stuck reply to this answer.
Consider viewing this W3Schools resource when you are comfortable with the basics.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
Is it possible to develop applications like Facebook using .NET?
Yes, many large multinational organizations depend on the .net framework.
A lot of organizations do not publish their full tech stack however you can see this with tools like this or looking at the job adverts on the job page of stack overflow.
In addition, StackOverflow is built with .net see here
Yes.
In fact .NET isn't designed for hobbies level stuff it's designed for enterprise level feel free to use this powerful framework no matter if you're a beginner or a large company, you can always build your own solutions on top of it.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I'm new to WPF and MVVM pattern. I've been reading about it and I come to a little doubt.
I'll build an WPF application that mainly does access to a database (oracle), but this access is done by an WebService (DataService). My question is in the Model part.
Should I create a class to each table on the database, on my Model, or should I just use the entities that the service provides me?
My guess is use the entities of the service, and then just do the CRUD operations in my application. But I want your opinion.
Thanks in advance.
It is always a good practice to use your own Models. That way, if the Service changes the structure, you will only need to change one point (where you map the item to your own entity), else you would have to change your whole application
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am a new user of C# (for work), coming from C++ development. I'm used to knowing more or less how data is laid out, and how many levels of pointer indirection there are, as these things can be very important for performance.
I know I'm supposed to just relax and have a good time hammering out business software and not think about these details on the clock, but is there good documentation for this for C# somewhere?
I know there is compilation to IR, and then JIT to native code, so I guess I am asking about how C# source relates to the native x86-64 code.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I want to know the scope of the sufficient impact of the RUP methodology. i know it would be so efficient in on IS Systems such as MIS and HIS and so on but when you want to design and develop a system such as Control Monitoring System, is it be so sufficient as good as IS system. I mean when most challenges on such systems would be technical not rational, relational and informational that RUP is focussed on, is that be still so efficient as well. and if isn't, what methodologies you suggest instead of that?
The defence industry often uses some variant of MIL-STD-498 or its successor IEEE 12207. These are more technically oriented than RUP and less concerned with, well, selling consultants for Rational quite frankly.