Lucene.Net in ASP .Net MVC application [closed] - asp.net-mvc

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 5 years ago.
Improve this question
Am currently looking to implement full text search in different pages of my asp .net MVC application and was thinking to use Lucene.Net to achieve this. I was hoping if someone could guide me through best practices how to achieve this in an asp .net MVC application with fluent nhibernate for multiple datatypes.
Thanks

Related

Separate Controller library in ASP.NET MVC Core framework Pros and Cons [closed]

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 3 years ago.
Improve this question
I am new in ASP.NET MVC Core and have a small query regarding ASP.NET MVC Core framework.
Is it the best way to use a separate class library for Controllers in ASP.NET MVC Core framework?
Can anyone help me to provide some detailed Pros and Cons for a separate class library for Controllers?
There no reason to do this because what exactly are you separating? The controllers that you write are going to be specific to ASP.NET MVC so you can't reuse them with another framework. There are no pros, you are just making your project more complicated for no reason.

Reduce the size of asp.net mvc web application using only the packages? [closed]

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
How do create asp.net mvc web application without any package type Owin, Twitter and the like? I created ASP.Net MVC web application and watch the project is too big = ~ 110-120 MB. It's too large file size. It is clear that the need to remove packages. What to do?
While creating the MVC project, click the "Change Authentication" button and select "No Authentication".

Is ASP.NET MVC a viable choice for a large project? [closed]

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 9 years ago.
Improve this question
I want to use MVC for a big project, but I read in some website that this is not suitable for large projects.
Is this true? and are there examples of some great sites or application that have been written with this technology?
We built the site you are browsing with it.
StackOverflow is a 100k LoC ASP.NET MVC site, and is currently #66 #53 in the world for traffic according to Quantcast.
More in general, it matters much more how you use it.
Facebook is PHP based, twitter is Ruby based. Both are relatively slow interpreted languages, and yet, they work!

Can you use EF 4 and MVC 2? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
It's been about 6 months since I did any coding. The life of a Tech. Lead. Quick question-Can I use EF 4 and MVC 2? Or do I HAVE TO upgrade to MVC 3?
MVC does not care what you use for the model. You can use EF, ADO.NET, XML files, a web service, etc.

Differnce between mvc and silverlight [closed]

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 8 years ago.
Improve this question
which is future of web technology of microsoft
silverlight or mvc asp.net i am really confused
iam good in asp.net but completely unaware with silvelight and mvc
Silverlight is a RIA technology from Microsoft, best thought of as a Flash competitor. It uses XAML as a markup language.
MVC is a software pattern, but also used as part the name of a web application framework by Microsoft that utilizes this pattern - ASP.NET-MVC. It is an alternative to webforms (ASP.NET) - noted for being easier to write tests for and for plug-ability of IoC containers, view engines and more.

Resources