Hi, This post will show you, How to apply multiple or complicated condition with Entity framwork dbContext toList method using the where clause. If you are coming first time to this post, please read my post for Entity Framework Introduction. Example of this post-based Entity Framework Introduction.
Monday, 23 May 2022
Multiple Condition Entity framework toList Method | ASP.Net C# MVC
Friday, 20 May 2022
Introduction Entity Framework for Begina record display | ASP.NET MVC C#
Entity Framework (EF)
Entity Framework (EF) is developed by Microsoft which automates the database insert,Update,select and delete (CRUD) operations without manually coding. ER increase the development time because database-related task is done without long code.
This post will help you understand ER operation. This post is designed for beginners as well as experts both. Step by step instruction is given to display records from SQL Server.
Friday, 8 April 2022
Send Whatapp message from contact form | PHP
PHP Code
<?php
if(isset($_POST['submit']))
{
$str="https://wa.me/+91-9795000000?text=";
$str.="Roll%20:%20" . preg_replace('/ /','%20',$_POST['Roll']);
$str.= ",Name%20:%20" . preg_replace('/ /','%20',$_POST['Name']);
$str.=",City%20:%20" . preg_replace('/ /','%20',$_POST['City']);
header("Location: $str");
}
?>
HTML
<form method="post" style="margin:4%">
<input type="text" name="Roll" /><br />
<input type="text" name="Name" /><br />
<input type="text" name="City" /><br />
<input type="submit" name="submit" value="Send" />
</form>
Monday, 28 March 2022
Hotel Management System Synopsis Download Free