为 Django/Pylons 程序员学习 C# 和 ASP.NET MVC
我们有一个项目即将上线,该项目可能会采用某种 ASP.NET 形式。我真的希望这意味着 ASP.NET MVC :)
我之前在 ASP.NET(非 MVC)中创建了一个 SOAP Web 服务和一个小网站,所以我熟悉 C#、ASP.NET 的基本知识,和 LINQ(除了模板仍然让我很困惑)。
然而,我是一名相当高级的 Python 程序员,并且在 Django 和 Pylons 方面拥有丰富的经验。将这些知识转化为 ASP.NET 的最佳方法是什么?
我对涉及最新版本 .NET 的任何内容以及 .NET、Visual Studio 等的最佳实践特别感兴趣。
We have a project coming down the line that's likely going to be in ASP.NET of some sort. I really hope this means ASP.NET MVC :)
I've created a SOAP web service and a small website in ASP.NET (non-MVC) before, so I'm familiar with the bare basics of C#, ASP.NET, and LINQ (except templates still confuse me significantly).
I am however a rather advanced Python programmer, and I've had a ton of experience in Django and Pylons. What's the best way to translate this knowledge to ASP.NET?
I'm especially interested in anything that involves the latest versions of .NET, and in best practices for .NET, Visual Studio, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我是 PluralSight 培训的忠实粉丝。作为桑德森书的补充,而不是替代。
但每月 29 美元,您找不到更好的培训材料了。您可以观看 ASP.Net MVC 课程、C# 课程和许多其他内容。
http://www.pluralsight-training.net/microsoft/
I'm a big fan of PluralSight training. As a supplement to the Sanderson book, not a replacement for.
But for $29/month you won't find better training materials. You can watch ASP.Net MVC courses, C# courses and many other things.
http://www.pluralsight-training.net/microsoft/
了解 Django 将使您能够更好地使用 ASP.NET MVC - 您已经了解模型和视图等的角色。Python
通常是比 C# 更高级的语言,因此您可能会发现它的功能不太强大使用。总的来说,我想说他们之间没有太多的区别。
我能给出的最好建议是阅读 专业 ASP.NET MVC 框架(史蒂夫·桑德森)。本书不仅仅是简单地向读者介绍该框架的特征,而是在上下文中清楚地展示了它们,并给出了可以被视为“最佳实践”的清晰示例(主观的,但我基本上同意他所提倡的技术)。
我现在实际上正在做相反的事情。我已经使用 ASP.NET MVC 几年了,但对于一些即将进行的项目,我正在转向 Django。
Knowing Django will put you in a good position to use ASP.NET MVC - you'll already know about the roles of Models and Views etc.
Python is generally a higher level language than C# so you might find that it can be less powerful to use. On the whole I'd say there isn't much between them though.
The best advice I could give would be to read Pro ASP.NET MVC Framework (Steve Sanderson). This book goes beyond simply teaching the reader about the features of the framework but clearly demonstrates them in context and gives clear examples of what could be considered 'best practice' (subjective, but I largely agree with the techniques he advocates).
I'm actually going the inverse at the moment. I've been using ASP.NET MVC for a couple of years but am moving towards Django for some upcoming projects.