我有插入sp
create procedure sp_insert_services
@Service_Type nvarchar(50),
@Frequency nvarchar(50),
as
insert INTO tbl_fl_Master_List
(Service_Type,Frequency)
values
(@Service_Type,
@Frequency)
现在我如何通过lambda表达式,linq到sql和EF来写这个?
我尝试了这个,但这显示错误
var insert = insertt.tbl_fl_Master_List();
if(insertt!=null)
{
insertt.tbl_fl_Master_List.Add();
}
insertt.SaveChanges();
错误8不可调用的成员'chart_project.Track_Data.tbl_fl_Master_List'不能像方法一样使用。
错误9方法“添加”没有重载需要0个参数
我也试试这个
public static string Insert_master_services(string Service_Type,string Frequency)
{
Data insertt=new Data();
tbl_fl_Master_List t = new tbl_fl_Master_List();
t.Service_Type = Service_Type;
t.Frequency = Frequency;
insertt.SaveChanges();
}