桌面客户线索跟踪软件..哪种语言适合C#/. VC++
我计划为我们的业务开发涉及客户跟踪服务的潜在客户跟踪软件。
我们有由 LAN 共享的系统,我想构建一个软件,可以处理所有客户详细信息,并可以在 LAN 中的所有系统中进行评估。但我在选择最好的平台来设计和实现该程序时陷入困境...任何人都可以建议我最好的平台来实现最好和稳定的软件..我已经使用 C# 做了一些小型应用程序(如 POS),所以我应该吗选择 C# 或寻找 vc++,我想使用实体框架作为数据源对象& SQL Express 作为我的数据库。
I have planned to develop lead tracking software for our business which involves Customer Tracking service.
we have systems which are shared by LAN and I want to build a software which can take care all customer details and can be assessed in all systems in a LAN. But I am in dileama to choose the best platform to design and implement the programme... Can any body suggest me the best platform to achieve best and stable software .. I have done some tiny applications using c#( like POS)so should I go for C# or look for vc++ and I want to use Entity Framework as datasource object & SQL Express as a my database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
C#
您可以这样做:
C#
You could do:
使用你的团队最擅长的任何东西——而 C++ 在这里就有点过分了;你可以使用 C# / SqlServer / 一些 ORM 工具......
Use whatever your team is best at - and C++ is a overkill here; you'll be fine with C# / SqlServer / some ORM tool ...
那么 C# 肯定可以实现您想要做的事情,如果您之前有 C# 的经验,那么对我来说这听起来像是一个胜利者。
Well C# can certainly achieve what you are looking to do, and if you have prior expieriance with C# it sounds like a winner to me.
C#
将是更好的选择,因为它是一种RAD 语言
。因此,如果您的团队也熟悉C#
,那么它是比VC++ 更好的选择。
C#
would be a better option as it is aRAD language
. So if your team is comfortable withC#
as well, then its a much better option thanVC++.