Anda dapat membuat prosedur tersimpan sederhana di SQL Server yang memilih nilai urutan berikutnya seperti ini:
CREATE PROCEDURE dbo.GetNextSequenceValue
AS
BEGIN
SELECT NEXT VALUE FOR dbo.TestSequence;
END
dan kemudian Anda dapat mengimpor prosedur tersimpan itu ke model EDMX Anda di Entity Framework, dan memanggil prosedur tersimpan itu dan mengambil nilai urutan seperti ini:
// get your EF context
using (YourEfContext ctx = new YourEfContext())
{
// call the stored procedure function import
var results = ctx.GetNextSequenceValue();
// from the results, get the first/single value
int? nextSequenceValue = results.Single();
// display the value, or use it whichever way you need it
Console.WriteLine("Next sequence value is: {0}", nextSequenceValue.Value);
}
Pembaruan: sebenarnya, Anda dapat melewati prosedur tersimpan dan menjalankan kueri SQL mentah ini dari konteks EF Anda:
public partial class YourEfContext : DbContext
{
.... (other EF stuff) ......
// get your EF context
public int GetNextSequenceValue()
{
var rawQuery = Database.SqlQuery<int>("SELECT NEXT VALUE FOR dbo.TestSequence;");
var task = rawQuery.SingleAsync();
int nextVal = task.Result;
return nextVal;
}
}