Click here to Skip to main content
15,892,298 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
mvc application that is used to determine the frequency of each word appear in the book moby  Dick; or the whale by Herman Melville.you application must be written in C#
make use of sql dtabase to store the tuple of <Word : Frequency>,employs the entity Framework and Linq expression where appropiate
output :

Most frequent word:{word} occured {x} times
Most frequent 7 character  word:{word} occured {x} times
Highest scoring words(according to scrabble):{word} with a score of {x}


What I have tried:

I am new I am not sure where to start
Posted
Updated 10-Aug-17 8:49am

1 solution

Here is an example that counts words in a string: [Word count]
You can load a text file into a string with File.ReadAllText, see example here: [^]
Here you can find the basics of working with SQL Server: [SqlClient]

If you understand this basic stuff, you can move on to LINQ, Entity Framework and MVC, good luck !
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900