1
Answer

Feeds with comment in Xamarin.Forms

I have been tasked with creating a discussion section/ Feeds with Xamarin.Forms.
 
I have looked for examples and found nothing.
 
I have to create a section of the app where Users can ask a question and other users can comment and/or like question. I basically want to create something like Facebook Feeds or Stackoverflow but must simpler.
 
I need some guidance as I am fairly new to Xamarin. I am using I have Generated the Models. I am Also using an SQL DB, with Web Services.
 
Any help will be appreciated. 
Answers (1)
1
Jignesh Trivedi

Jignesh Trivedi

NA 61k 14.2m 10y

Hi,

No
Each model does not become a DB table, If you decorated them with "Table" attribute or define dbset property in context class then it become DB table.

Generally db table name and column name is same as model class name and properties name but we can change also.

Please refer
https://msdn.microsoft.com/en-us/magazine/hh126815.aspx

hope this will help you.

1
Suraj Sahoo

Suraj Sahoo

NA 10.2k 922.3k 10y
Follow the below link for better understanding.
http://www.google.co.in/url?q=http://www.entityframeworktutorial.net/code-first/entity-framework-code-first.aspx&sa=U&ei=z6rbVIn4A4zluQT6poHgBg&ved=0CAsQFjAA&usg=AFQjCNHXrGApef8mPSHLY8B5kkpoArcnLQ
What happens is you create a class with properties and you specify the id or primary key with key attribute. Thus when enable migration is done it creates the migration which picks the classes and its properties and on update database the tables are created based on the connection strings.
accept if helps
thanks
0
Rollin Shultz

Rollin Shultz

NA 5 631 10y
Thank you Suraj and Jignesh, I will study your suggestions.