Author: samirgc
Asp.net core Web API join three tables with Guid [Sampurna]#4
Hey guys this articles that i am writing is an unofficial articles. If you are not executing then i am not resposible. You have to wait until i make a perfect tutorial on My Xamarin Guy Show. @XamarinGuyShowOfficial At first we are going to create a simple web api project. We are going to join
Asp.net core Web API join two tables [Sampurna]#3
Create a model folder(Models) Step1: Inside Models folder Create a Department class Department.cs Step2 : Create a Employee.cs class with in folder Step 3: Create a employee context class inside models folder EmployeeContext //This class will be called inside controller i.e employee controller for our post and put method. Step4 : Create another class NewCollector
Asp.net core Perfect learning tutorial [Sampurna] #2
Hey guys in this tutorial we are going to create a simple asp.net core web api migrating to data base. and making some crud operation. Create a new project > Asp.netcorewebApp>WebApplication4(Anyname) >SelectApi> At first check your project is running or not. Create a new Folder Naming it as Models>create a class(TicketClass) tep2: Create a TicketContextClass
Adding Swagger in Asp.net core App [Sampurna #1]
Configure Swagger in ASP.net Core Web Project App using Swashbuckle.AspNetCore Step1: Install package Swashbuckle.AspNetCore Step2: Configure Swagger middleware : Startup.cs : public void ConfigureServices(IServiceCollection services) { services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1); services.AddSwaggerGen(c => { c.SwaggerDoc(“v1.0”, new Info { Title = “My Demo API”, Version = “1.0” }); }); } Inside configure method inside Startup.cs : public void Configure(IApplicationBuilder app,
Xamarin Forms Reading Data From Json to Picker and Entry
MainPage.xaml MainPage.xaml.cs Then Create a data folder and create a json File : and copy the content from the repo that i have mentioned inside the MainPage.xaml.cs. And Don’t forget to make that json File as embedded resources. Post Views: 1,145
Xamarin Forms Converter for Button and Multi Triggers Easy MVVM Tutorials #14
Our App.xaml.cs ==ViewsFolder== MyTriggerPage.xaml MyTriggerPage.xaml.cs //Create a new Dashboard Content Page as my tutorial and place some image on resources folder of both android and IOS project ==ViewModelFolder== MyTriggerViewModel.cs ==ConverterFolder=== MyMultiTriggerConverter.cs Output : Post Views: 1,506
Xamrin Forms Search Item on ListView MVVM Easy Approach #15
Your App.xaml.cs will be looking like this : ====ViewsFolder=== MyListPage.xaml MyListPage.xaml.cs =====ViewModelFolder==== MyListViewModel.cs ====ModelFolder==== # If you have some problem check out my video Source Output 😀 Post Views: 1,537
Asp .net Core for Xamarin Dev Part 1
At first Fire up your your Visual Studio for windows or MAC Machine In this tutorial we are going to create our simple API Step 1: Create ASP.net core WEB API in Mac where as in windows Create Asp.netcore Web Application > API Name it as (Solution Name : TripTrackerLive Project Name: TripTracker.BackService) Now let’s
Xamarin Forms List Item Selected to new Page MVVM First #12
App.xaml.cs Views(Folder) MyListPage.xaml MyListPage.xaml.cs MyPage1.xaml ViewModel(Folder) Model (Folder) MyListModel.cs Output : Post Views: 1,288
Asp.netcoreMVC with Xamarin Forms [Core #1]
This is my first article regarding xamarin forms with Asp.net core mvc so lets start : File > New > Project > Web > Asp.net core web application >give it name as (Myxamarintest)>WebapplicationMVC> Step2: Add nuget packages : Ooui Ooui.Forms Ooui.ASPNetCore Xamarin.Forms Step3 : create a new Page as MyPage which will look like this